Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ env:
jobs:
create-tags-for-past-releases:
name: Create tags for past releases
# This job has to be removed once it is ran succesfully
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -130,6 +131,7 @@ jobs:
[ $empty -eq 1 ] || grep -q "is already uploaded" < $RODIO_TMP

create-git-tag:
needs: create-tags-for-past-releases # This line needs to be removed once the `create-tags-for-past-releases` job is removed
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
Expand All @@ -144,6 +146,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history to list all existing tags
token: ${{ secrets.WORKFLOW_TOKEN }}
- name: Extract version from Cargo.toml
id: extract_version
Expand Down