diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 57dba3e0..5dfc705d 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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