1
1
mirror of https://github.com/theoludwig/eslint-config-conventions.git synced 2024-09-19 01:25:53 +02:00
eslint-config-conventions/.github/workflows/release.yml

38 lines
874 B
YAML
Raw Normal View History

2022-02-19 16:11:42 +01:00
name: 'Release'
on:
push:
branches: [master]
jobs:
release:
runs-on: 'ubuntu-latest'
permissions:
contents: 'write'
issues: 'write'
pull-requests: 'write'
id-token: 'write'
2022-02-19 16:11:42 +01:00
steps:
- uses: 'actions/checkout@v3.5.3'
2022-02-19 16:11:42 +01:00
with:
fetch-depth: 0
persist-credentials: false
- name: 'Setup Node.js'
uses: 'actions/setup-node@v3.6.0'
2022-02-19 16:11:42 +01:00
with:
node-version: 'lts/*'
cache: 'npm'
- name: 'Install dependencies'
run: 'npm clean-install'
- name: 'Verify the integrity of provenance attestations and registry signatures for installed dependencies'
run: 'npm audit signatures'
2022-02-19 16:11:42 +01:00
- name: 'Release'
run: 'npm run release'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}