Remove snapcraft install action that uses deprecated Node version (#1123)

This commit is contained in:
Evan Simkowitz 2024-10-24 12:47:11 -07:00 committed by GitHub
parent e6f9ab7336
commit 2da51d2c22
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,7 +17,8 @@ jobs:
version: 3.x version: 3.x
repo-token: ${{ secrets.GITHUB_TOKEN }} repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install Snapcraft - name: Install Snapcraft
uses: samuelmeuli/action-snapcraft@v2 run: sudo snap install snapcraft --classic
shell: bash
- name: Publish from staging - name: Publish from staging
run: "task artifacts:publish:${{ github.ref_name }}" run: "task artifacts:publish:${{ github.ref_name }}"
env: env:
@ -34,6 +35,7 @@ jobs:
run: "task artifacts:snap:publish:${{ github.ref_name }}" run: "task artifacts:snap:publish:${{ github.ref_name }}"
env: env:
SNAPCRAFT_STORE_CREDENTIALS: "${{secrets.SNAPCRAFT_LOGIN_CREDS}}" SNAPCRAFT_STORE_CREDENTIALS: "${{secrets.SNAPCRAFT_LOGIN_CREDS}}"
shell: bash
bump-winget: bump-winget:
if: ${{ startsWith(github.ref, 'refs/tags/') && !contains(github.ref_name, 'beta') }} if: ${{ startsWith(github.ref, 'refs/tags/') && !contains(github.ref_name, 'beta') }}
runs-on: windows-latest runs-on: windows-latest