Skip to content

chore: version bump, dist outdir #2

chore: version bump, dist outdir

chore: version bump, dist outdir #2

Workflow file for this run

name: Update Package

Check failure on line 1 in .github/workflows/trigger-build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/trigger-build.yml

Invalid workflow file

(Line: 5, Col: 3): Required property is missing: group
on:
workflow_dispatch:
concurrency:
cancel-in-progress: true
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: |
git config user.name github-actions
git config user.email [email protected]
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://npm.pkg.github.com'
cache: 'npm'
- name: Install algokit
run: pipx install algokit
- run: submodule update --init --recursive
- run: npm ci
- run: npm run build
- name: Commit
run: |
git diff --quiet && git diff --staged --quiet || git commit -am "chore: release ${{ github.sha }}"
git push