From 12f1d997e318f07727fac1494c198144af002bc9 Mon Sep 17 00:00:00 2001 From: Evert Arias Date: Tue, 19 Nov 2024 23:26:34 -0500 Subject: [PATCH] fix: Update develop workflow to include permissions and token configuration (#11) * ci: Update workflow name and conditions * feat: Add workflow for building and testing on develop branch * feat: Update build process and add release candidate tagging * feat: Update develop workflow to include permissions and token configuration --- .github/workflows/develop.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 41dd4d9..b72e228 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -5,6 +5,9 @@ on: branches: - develop +permissions: + contents: write + jobs: build-and-test: name: Build and Test for Linux and macOS @@ -17,6 +20,8 @@ jobs: steps: - name: Checkout Code uses: actions/checkout@v3 + with: + token: ${{ secrets.GITHUB_TOKEN }} - name: Set up Go uses: actions/setup-go@v4