Skip to content

Merge pull request #991 from LEDBrain/dependabot/npm_and_yarn/beta/se… #371

Merge pull request #991 from LEDBrain/dependabot/npm_and_yarn/beta/se…

Merge pull request #991 from LEDBrain/dependabot/npm_and_yarn/beta/se… #371

Workflow file for this run

name: Release workflow
on:
push:
branches:
- main
- beta
repository_dispatch:
permissions:
contents: read
jobs:
test:
name: '🧪 Test and lint'
uses: ./.github/workflows/development.yml

Check failure on line 15 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

error parsing called workflow ".github/workflows/release.yml" -> "./.github/workflows/development.yml" (source branch with sha:1a93481fb1f0064ebefcb5d5d4f4e153ccc62743) : You have an error in your yaml syntax on line 38
release-github:
needs: test
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
steps:
# - name: Generate Token
# id: generate_token
# uses: tibdex/github-app-token@v1
# with:
# app_id: ${{ secrets.APP_ID }}
# private_key: ${{ secrets.APP_PRIVATE_KEY }}
- name: '☁️ Checkout repository'
uses: actions/checkout@v4
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
# token: ${{ steps.generate_token.outputs.token }}
- name: '🔧 Setup Node.js'
uses: actions/setup-node@v4
with:
node-version: '20'
- name: '📦 Install dependencies'
run: npm ci
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
- name: '🚀 Release'
env:
# GH_TOKEN: ${{ steps.generate_token.outputs.token }}
GIT_AUTHOR_NAME: 'utils-app[bot]'
GIT_AUTHOR_EMAIL: '115021052+utils-app[bot]@users.noreply.github.com'
GIT_COMMITTER_NAME: 'utils-app[bot]'
GIT_COMMITTER_EMAIL: '115021052+utils-app[bot]@users.noreply.github.com'
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx semantic-release --ci