Skip to content

Commit

Permalink
Ensure the publish step to be necessary for updating the native pac…
Browse files Browse the repository at this point in the history
…kages upon release (#3067)
  • Loading branch information
Gedochao authored Aug 2, 2024
1 parent 7d808cc commit fc845fd
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1672,6 +1672,7 @@ jobs:
- checks
- reference-doc
- generate-linux-arm64-native-launcher
- publish
if: github.event_name == 'push'
runs-on: ubuntu-20.04
steps:
Expand Down Expand Up @@ -1730,7 +1731,9 @@ jobs:

update-packages:
name: Update packages
needs: launchers
needs:
- launchers
- publish
runs-on: ubuntu-20.04
if: startsWith(github.ref, 'refs/tags/v') && github.repository == 'VirtusLab/scala-cli'
steps:
Expand Down Expand Up @@ -1813,7 +1816,9 @@ jobs:

update-windows-packages:
name: Update Windows packages
needs: launchers
needs:
- launchers
- publish
runs-on: "windows-2019"
if: startsWith(github.ref, 'refs/tags/v') && github.repository == 'VirtusLab/scala-cli'
steps:
Expand Down

0 comments on commit fc845fd

Please sign in to comment.