Create release #58
This file contains 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: Create release | |
on: | |
schedule: | |
# At 13:00 (UTC) every Wednesday. | |
- cron: '0 13 * * 3' | |
workflow_dispatch: | |
inputs: | |
version: | |
description: '⚠ be sure of yourself ⚠' | |
required: false | |
default: '' | |
debug: | |
description: 'Add DEBUG=* to the env if true' | |
type: boolean | |
default: false | |
required: false | |
jobs: | |
release: | |
environment: 'Release' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3 | |
with: | |
registry-url: 'https://registry.npmjs.org' | |
node-version-file: '.nvmrc' | |
- name: Install npm | |
run: npm i -g npm@9 | |
shell: bash | |
- run: npm ci | |
shell: bash | |
- name: Release | |
run: npm run release | |
env: | |
VERSION: ${{ inputs.version }} | |
DEBUG: ${{ inputs.debug && '*' || '' }} | |
RELEASER_APP_ID: ${{ secrets.RELEASER_APP_ID }} | |
RELEASER_PRIVATE_KEY: ${{ secrets.RELEASER_PRIVATE_KEY }} | |
RELEASER_CLIENT_ID: ${{ secrets.RELEASER_CLIENT_ID }} | |
RELEASER_CLIENT_SECRET: ${{ secrets.RELEASER_CLIENT_SECRET }} | |
RELEASER_INSTALLATION_ID: ${{ secrets.RELEASER_INSTALLATION_ID }} | |
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3 | |
with: | |
registry-url: 'https://npm.pkg.github.com' | |
node-version-file: '.nvmrc' | |
- name: Publish to GitHub Packages | |
run: npm run release:phase5 | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |