From 58b053960356ce484dee24a47f5aaed475ba9f7d Mon Sep 17 00:00:00 2001 From: Eron Wright Date: Fri, 27 Sep 2024 15:21:38 -0700 Subject: [PATCH] release workflow --- .github/workflows/release.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b629d8b5..14a83183 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -9,6 +9,8 @@ env: PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} VERSION: ${{ github.ref_name }} +permissions: + contents: write jobs: docker: name: Build & Push Docker Images @@ -33,6 +35,8 @@ jobs: build-args: | VERSION=${{ env.VERSION }} release: + name: Create a GitHub Release + needs: docker runs-on: ubuntu-latest steps: - name: Checkout