Skip to content

Commit

Permalink
Merge pull request #106 from MrAnno/reenable-packages
Browse files Browse the repository at this point in the history
ci: re-enable packages in release draft and nightly workflows
  • Loading branch information
MrAnno authored May 18, 2024
2 parents aeab53f + f3e22f5 commit 2fb304d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,12 @@ jobs:
path: ${{ env.TARBALL_PATH }}
if-no-files-found: error

# create-packages:
# needs: create-release-tarball
# uses: ./.github/workflows/create-packages.yml
# with:
# source-tarball-artifact-name: release-tarball
# dbld-image-mode: build
create-packages:
needs: create-release-tarball
uses: ./.github/workflows/create-packages.yml
with:
source-tarball-artifact-name: release-tarball
dbld-image-mode: build

# upload-packages:
# needs: create-packages
Expand All @@ -92,7 +92,7 @@ jobs:

create-draft-release:
runs-on: ubuntu-latest
needs: [create-release-tarball]
needs: [create-release-tarball, create-packages] # TODO replace with upload-packages
steps:
- name: Checkout AxoSyslog source
uses: actions/checkout@v4
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/nightly-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ jobs:
name: source-tarball
path: dbld/build/*.tar.*

# create-packages:
# needs: tarball
# uses: ./.github/workflows/create-packages.yml
# with:
# source-tarball-artifact-name: source-tarball
# dbld-image-mode: cache
create-packages:
needs: tarball
uses: ./.github/workflows/create-packages.yml
with:
source-tarball-artifact-name: source-tarball
dbld-image-mode: cache

# upload-packages:
# needs: create-packages
Expand Down

0 comments on commit 2fb304d

Please sign in to comment.