From b4eaf543b13f011d48cf702a92d206c8a3f51c02 Mon Sep 17 00:00:00 2001 From: Meng Zhang Date: Thu, 1 Jun 2023 18:24:02 -0700 Subject: [PATCH] Update docker.rust.yml --- .github/workflows/docker.rust.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docker.rust.yml b/.github/workflows/docker.rust.yml index 918735a..7f50562 100644 --- a/.github/workflows/docker.rust.yml +++ b/.github/workflows/docker.rust.yml @@ -169,17 +169,19 @@ jobs: if: github.event_name != 'pull_request' needs: release-binary runs-on: ubuntu-latest + permissions: + contents: write steps: - name: Download a single artifact uses: actions/download-artifact@v3 with: name: tabby_aarch64-apple-darwin - - uses: "marvinpinto/action-automatic-releases@latest" + - uses: ncipollo/release-action@v1 with: - repo_token: "${{ secrets.GITHUB_TOKEN }}" - automatic_release_tag: "latest" + allowUpdates: true prerelease: true - title: "Development Build" - files: | - tabby_aarch64-apple-darwin + name: "Development Build" + artifacts: tabby_aarch64-apple-darwin + tag: latest + removeArtifacts: true