Skip to content

chore: use GithubApp to bypass branch protection #22

chore: use GithubApp to bypass branch protection

chore: use GithubApp to bypass branch protection #22

Workflow file for this run

name: Build
on:
push:
branches:
- release
- beta
concurrency:
group: ${{ github.ref }}
cancel-in-progress: false
jobs:
platform_matrix:
strategy:
matrix:
build:
- os: ubuntu-latest
task: linux
- os: windows-latest
task: win
# - os: macos-latest
# task: mac
runs-on: ${{ matrix.build.os }}
steps:
- if: matrix.build.os == 'ubuntu-latest'
run: sudo snap install snapcraft --classic
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm install -g yarn
- run: yarn
- id: create_token # get ReleaseBot access token
uses: tibdex/github-app-token@v2
with:
app_id: ${{ secrets.RELEASE_BOT_APP_ID }

Check failure on line 37 in .github/workflows/cd.yml

View workflow run for this annotation

GitHub Actions / Build

Invalid workflow file

The workflow is not valid. .github/workflows/cd.yml (Line: 37, Col: 19): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
private_key: ${{ secrets.RELEASE_BOT_SECRET }}
- run: npx semantic-release --ci
env:
GH_TOKEN: ${{ steps.create_token.outputs.token }}