21 lines
563 B
YAML
21 lines
563 B
YAML
name: Release
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ["Checks"]
|
|
branches: [main]
|
|
types: [completed]
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: https://${{ secrets.FORGE_TOKEN }}@code.quickbasic.org/sigitex/regime/actions/release@main
|
|
with:
|
|
gitea-token: ${{ secrets.FORGE_TOKEN }}
|
|
gitea-url: https://code.quickbasic.org
|
|
npm-token: ${{ secrets.NPM_TOKEN }}
|