Skip to content

Commit

Permalink
fix release workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
donavanbecker committed Jun 19, 2024
1 parent 6ae15f0 commit 6278217
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,23 +103,23 @@ jobs:
uses: tubone24/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAG_NAME: ${{ needs.tag.outputs.version }}
TAG_NAME: v${{ needs.tag.outputs.version }}
with:
is_append_body: "Contents of ${{ matrix.QEMU_ARCH }} Package."

- name: update release
uses: tubone24/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAG_NAME: ${{ needs.tag.outputs.version }}
TAG_NAME: v${{ needs.tag.outputs.version }}
with:
body_path: ${{ env.BODY_FILE }}

- uses: AButler/[email protected]
with:
files: '*.deb;*.manifest'
repo-token: ${{ secrets.GITHUB_TOKEN }}
release-tag: ${{ needs.tag.outputs.version }}
release-tag: v${{ needs.tag.outputs.version }}

update-apt-repo:
name: Publish to Repo
Expand All @@ -134,7 +134,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ github.token }}
with:
tag: ${{ needs.tag.outputs.version }}
tag: v${{ needs.tag.outputs.version }}

- name: Download release assets
uses: dsaltares/[email protected]
Expand Down

0 comments on commit 6278217

Please sign in to comment.