Skip to content

Commit

Permalink
πŸ“‹ Fixed release workflow not being able to tag new versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Somfic committed Dec 18, 2023
1 parent 90250da commit 6c98211
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/cd-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ jobs:
release:
needs: changelog
permissions: write-all
runs-on: windows-latest
strategy:
matrix:
platform: [macos-latest, ubuntu-20.04, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -43,11 +46,15 @@ jobs:
- name: Setup Yarn
run: npm install --global yarn

- name: Install Node dependencies
run: yarn install
- name: Install scripts
run: yarn

- name: Install dependencies
run: yarn
working-directory: ./src-client

- name: Tag version
run: yarn run version ${{ github.event.milestone.title }}
run: yarn run tag-version ${{ github.event.milestone.title }}

- name: Rust cache
uses: swatinem/rust-cache@v2
Expand Down

0 comments on commit 6c98211

Please sign in to comment.