v0.43.2 #136
Workflow file for this run
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
on: | |
push: | |
tags: | |
- "*.*.*" | |
permissions: | |
id-token: write | |
contents: write | |
name: Build and Release | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
registry-url: https://registry.npmjs.org | |
- name: Verify versions | |
run: node --version && npm --version && node -p process.versions.v8 | |
- name: Cache build context | |
id: cache-node | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.npm | |
node_modules | |
key: ${{ runner.os }}-node | |
- name: Get current tag | |
id: current_tag | |
uses: WyriHaximus/github-action-get-previous-tag@v1 | |
with: | |
fallback: 0.0.0 | |
- name: Install dependencies | |
run: npm install --no-audit | |
- name: Run build | |
run: npm run build | |
- name: Archive output files | |
run: tar -zcvf ./release-${{ steps.current_tag.outputs.tag }}.tar.gz dist/ | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ steps.current_tag.outputs.tag }} Release | |
path: ./release-${{ steps.current_tag.outputs.tag }}.tar.gz | |
retention-days: 30 | |
- name: Release new version | |
uses: softprops/action-gh-release@v1 | |
with: | |
name: ${{ steps.current_tag.outputs.tag }} | |
body: "⚠️ Changelog not yet provided." | |
files: ./release-${{ steps.current_tag.outputs.tag }}.tar.gz | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Release package | |
run: npm publish --ignore-scripts --provenance | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |