Just testing the ci #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | ||
on: | ||
# Run the workflow each time new commits are pushed to the candidate branch. | ||
push: | ||
workflow_dispatch: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
permissions: | ||
contents: read | ||
issues: write | ||
jobs: | ||
screenshots: | ||
Check failure on line 17 in .github/workflows/release-to-candidate.yml GitHub Actions / ReleaseInvalid workflow file
|
||
name: 📸 Gather screenshots | ||
needs: call-for-testing | ||
environment: "Candidate Branch" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: 📸 Gather screenshots | ||
uses: snapcrafters/ci/get-screenshots@main | ||
with: | ||
issue-number: "123" | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
screenshots-token: "random-string" | ||
- name: Setup upterm session | ||
uses: lhotari/action-upterm@v1 |