From 2bda3b40eb7f74b426a86cd69dfe38004aa54798 Mon Sep 17 00:00:00 2001 From: Dr_rOot Date: Mon, 24 Apr 2023 21:14:20 +0800 Subject: [PATCH] fix: github action snapcraft token env (#1441) --- .github/workflows/codeql-analysis.yml | 6 +++--- .github/workflows/release.yml | 10 +++++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 4f953eb..f055008 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -43,7 +43,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v1 + uses: github/codeql-action/init@v2 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -54,7 +54,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v1 + uses: github/codeql-action/autobuild@v2 # â„šī¸ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -68,4 +68,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 + uses: github/codeql-action/analyze@v2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0c22cfa..61ff3cf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,9 +28,13 @@ jobs: uses: samuelmeuli/action-snapcraft@v2 # Only install Snapcraft on Ubuntu if: startsWith(matrix.os, 'ubuntu') - with: - # Log in to Snap Store - snapcraft_token: ${{ secrets.snapcraft_token }} + env: + # Snapcraft + SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.snapcraft_token }} + + - name: Test Snapcraft + if: startsWith(matrix.os, 'ubuntu') + run: snapcraft --help - name: Prepare for app notarization (macOS) if: startsWith(matrix.os, 'macos') && startsWith(github.ref, 'refs/tags/v')