chore: bump sublime-text to version 4188 #15
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: | |
branches: ["dev"] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
issues: write | |
jobs: | |
get-architectures: | |
name: 🖥 Get snap architectures | |
runs-on: ubuntu-latest | |
outputs: | |
architectures: ${{ steps.get-architectures.outputs.architectures }} | |
architectures-list: ${{ steps.get-architectures.outputs.architectures-list }} | |
steps: | |
- name: 🖥 Get snap architectures | |
id: get-architectures | |
uses: snapcrafters/ci/get-architectures@main | |
release: | |
name: 🚢 Release to dev/candidate | |
needs: get-architectures | |
runs-on: ubuntu-latest | |
environment: "Dev Branch" | |
strategy: | |
matrix: | |
architecture: ${{ fromJSON(needs.get-architectures.outputs.architectures-list) }} | |
steps: | |
- name: 🚢 Release to dev/candidate | |
uses: snapcrafters/ci/release-to-candidate@main | |
with: | |
architecture: ${{ matrix.architecture }} | |
channel: dev/candidate | |
launchpad-token: ${{ secrets.LP_BUILD_SECRET }} | |
repo-token: ${{ secrets.SNAPCRAFTERS_BOT_COMMIT }} | |
store-token: ${{ secrets.SNAP_STORE_CANDIDATE }} | |
call-for-testing: | |
name: 📣 Create call for testing | |
needs: [release, get-architectures] | |
environment: "Dev Branch" | |
runs-on: ubuntu-latest | |
outputs: | |
issue-number: ${{ steps.issue.outputs.issue-number }} | |
steps: | |
- name: 📣 Create call for testing | |
id: issue | |
uses: snapcrafters/ci/call-for-testing@main | |
with: | |
architectures: ${{ needs.get-architectures.outputs.architectures }} | |
channel: dev/candidate | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
snapcraft-channel: 7.x/stable | |
promotion-channel: dev/stable | |
screenshots: | |
name: 📸 Gather screenshots | |
needs: call-for-testing | |
environment: "Dev Branch" | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📸 Gather screenshots | |
uses: snapcrafters/ci/get-screenshots@main | |
with: | |
channel: dev/candidate | |
issue-number: ${{ needs.call-for-testing.outputs.issue-number }} | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
screenshots-token: ${{ secrets.SNAPCRAFTERS_BOT_COMMIT }} | |
snap-application-name: subl |