diff options
author | Josh Spicer <josh@joshspicer.com> | 2022-05-10 02:26:46 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-10 02:26:46 +0300 |
commit | b74d4e5e1f345e3f137f3c0819b49c1c519ef364 (patch) | |
tree | 81a4ba3a79ae3ac7a63765cafd79837fe60e2907 /.github | |
parent | e0d0066d6b7ad25f6dd4eb8e64bf685f2fe95d83 (diff) |
add updating release artifact
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/release-v1.yaml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/release-v1.yaml b/.github/workflows/release-v1.yaml index 1346aed..9292669 100644 --- a/.github/workflows/release-v1.yaml +++ b/.github/workflows/release-v1.yaml @@ -31,10 +31,10 @@ jobs: name: devcontainer-features.tgz path: devcontainer-features.tgz - # - name: Get or Create Release at current tag - # uses: ncipollo/release-action@v1 - # with: - # allowUpdates: true # Lets us upload our own artifact from previous step - # artifactErrorsFailBuild: true - # artifacts: "./devcontainer-*" - # token: ${{ secrets.GITHUB_TOKEN }} + - name: Get or Create Release at current tag + uses: ncipollo/release-action@v1 + with: + allowUpdates: true # Lets us upload our own artifact from previous step + artifactErrorsFailBuild: true + artifacts: "./devcontainer-*" + token: ${{ secrets.GITHUB_TOKEN }} |