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

38 lines
872 B
YAML
Raw Normal View History

name: "Release"
2022-02-19 16:11:42 +01:00
on:
push:
2024-02-16 20:04:49 +01:00
branches: [main]
2022-02-19 16:11:42 +01:00
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:
2024-07-10 12:42:53 +02:00
- uses: "actions/checkout@v4.1.7"
2022-02-19 16:11:42 +01:00
with:
fetch-depth: 0
persist-credentials: false
- name: "Setup Node.js"
2024-07-10 12:42:53 +02:00
uses: "actions/setup-node@v4.0.3"
2022-02-19 16:11:42 +01:00
with:
node-version: "lts/*"
cache: "npm"
2022-02-19 16:11:42 +01:00
- 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"
2022-02-19 16:11:42 +01:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}