Skip to content

Commit

Permalink
ci: use job name "tarball" consistently
Browse files Browse the repository at this point in the history
This fixes the nightly as it depended on "needs.tarball.outputs" values.

Signed-off-by: László Várady <[email protected]>
  • Loading branch information
MrAnno committed May 17, 2024
1 parent 14ef1c0 commit 64c5b58
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/nightly-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:


jobs:
create-source-tarball:
tarball:
runs-on: ubuntu-latest
outputs:
snapshot-version: ${{ steps.snapshot-version.outputs.SNAPSHOT_VERSION }}
Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:
path: dbld/build/*.tar.*

# create-packages:
# needs: create-source-tarball
# needs: tarball
# uses: ./.github/workflows/create-packages.yml
# with:
# source-tarball-artifact-name: source-tarball
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
build-and-test:
runs-on: ubuntu-latest
needs:
- create-source-tarball
- tarball
- axosyslog-modules
steps:
- name: Checkout source
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
publish-image:
if: github.ref == 'refs/heads/main'
uses: ./.github/workflows/axosyslog-docker.yml
needs: [create-source-tarball, build-and-test, axosyslog-modules]
needs: [tarball, build-and-test, axosyslog-modules]
with:
pkg-type: nightly
tarball-artifact: source-tarball
Expand Down

0 comments on commit 64c5b58

Please sign in to comment.