Skip to content

AstroCompress/v2.2.23 #54

AstroCompress/v2.2.23

AstroCompress/v2.2.23 #54

Workflow file for this run

name: NPM
concurrency:
group: NPM-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
security-events: write
contents: write
pull-requests: write
on:
workflow_dispatch:
release:
types: [created]
workflow_call:
jobs:
Publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4.1.5
- uses: actions/setup-node@v4.0.2
with:
node-version: "18"
registry-url: "https://registry.npmjs.org"
- run: npm install -g npm
- name: Publish .
continue-on-error: true
working-directory: .
run: |
npm publish --legacy-peer-deps --provenance --ignore-scripts
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}