Skip to content

test(palette): fix wrongly defined cursor color #34

test(palette): fix wrongly defined cursor color

test(palette): fix wrongly defined cursor color #34

Workflow file for this run

name: Release
on:
push:
branches:
- master
workflow_dispatch:
jobs:
release:
name: Gen Release
permissions:
contents: write
issues: write
pull-requests: write
if: ${{ github.ref == 'refs/heads/master' && github.repository_owner == 'RedsXDD' }}
runs-on: ubuntu-latest
steps:
- name: release-please-action
uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: simple
package-name: test
config-file: .github/release-please-config.json
manifest-file: .github/release-please-manifest.json
- name: Checkout
uses: actions/checkout@v4
- name: Tag Stable Versions
if: ${{ steps.release.outputs.release_created }}
run: |
git config user.name github-actions[bot]
git config user.email github-actions[bot]@users.noreply.github.com
git remote add gh-token "https://${{ secrets.GITHUB_TOKEN }}@github.com/googleapis/release-please-action.git"
git tag -d stable || true
git push origin :stable || true
git tag -a stable -m "Last Stable Release"
git push origin stable