Skip to content

Commit

Permalink
try 3
Browse files Browse the repository at this point in the history
Signed-off-by: jiaxiao zhou <[email protected]>
  • Loading branch information
Mossaka committed Sep 2, 2023
1 parent 3ec5dab commit 4f1cd69
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,17 @@ jobs:
- uses: actions/download-artifact@v3
with:
path: _artifacts
- name: create release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release create ${{ env.RELEASE_VERSION }} \
--generate-notes \
-p \
_dist/runtime.yaml#example-runtimes \
_dist/workload.yaml#example-workloads \
# - name: create release
# env:
# GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# run: |
# gh release create ${{ env.RELEASE_VERSION }} \
# --generate-notes \
# -p \
# _dist/runtime.yaml#example-runtimes \
# _dist/workload.yaml#example-workloads \

for f in ./_artifacts/*/*.tar.gz; do gh release upload ${{ env.RELEASE_VERSION }} $f; done
# for f in ./_artifacts/*/*.tar.gz; do gh release upload ${{ env.RELEASE_VERSION }} $f; done

# Setup buildx to build multiarch image: https://github.com/docker/build-push-action/blob/master/docs/advanced/multi-platform.md
- name: Set up QEMU
Expand Down

0 comments on commit 4f1cd69

Please sign in to comment.