quick save: Sat Dec 28 18:28:15 MSK 2024 #5
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: Release Workflow | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
permissions: | |
contents: write | |
packages: write | |
id-token: write | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 23 | |
registry-url: https://registry.npmjs.org/ | |
- | |
name: 'Deps: Install' | |
run: | | |
npm install | |
- | |
name: 'Build' | |
run: | | |
npm run build | |
- | |
name: 'Publish to default NPM registry' | |
run: | | |
npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} | |
- | |
name: 'Publish to GitHub''s NPM registry' | |
run: | | |
sed -i 's/registry.npmjs.org/npm.pkg.github.com/' /home/runner/work/_temp/.npmrc | |
sed -i 's/"name": "apache-superset-quick-init"/"name": "@nikelborm\/apache-superset-quick-init"/' package.json | |
npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- | |
name: 'Release: Upload' | |
uses: softprops/action-gh-release@v2 | |
with: | |
tag_name: latest-${{github.sha}} | |
fail_on_unmatched_files: true | |
files: | | |
./dist/minified/index.js | |
./template.env |