chore: generate changelog (#206) #213
This file contains hidden or 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: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| concurrency: | |
| group: production | |
| cancel-in-progress: false | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: production | |
| url: https://js.icp.build | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - uses: ./.github/actions/setup-deno | |
| - name: Deploy Docs to Juno satellite | |
| env: | |
| JUNO_TOKEN: ${{ secrets.JUNO_TOKEN }} | |
| run: deno task juno hosting deploy --mode production --immediate --batch 50 --prune | |
| - name: Update Juno satellite config | |
| env: | |
| # The identity corresponding to this token must be an Administrator of the satellite | |
| # in order to have permissions to apply the config | |
| JUNO_TOKEN: ${{ secrets.JUNO_TOKEN }} | |
| run: deno task juno config apply --force --mode production |