mirror of
https://github.com/theoludwig/markdownlint-rule-relative-links.git
synced 2024-11-04 18:21:31 +01:00
38 lines
874 B
YAML
38 lines
874 B
YAML
name: "Release"
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: "ubuntu-latest"
|
|
permissions:
|
|
contents: "write"
|
|
issues: "write"
|
|
pull-requests: "write"
|
|
id-token: "write"
|
|
steps:
|
|
- uses: "actions/checkout@v4.1.1"
|
|
with:
|
|
fetch-depth: 0
|
|
persist-credentials: false
|
|
|
|
- name: "Setup Node.js"
|
|
uses: "actions/setup-node@v4.0.1"
|
|
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"
|
|
|
|
- name: "Release"
|
|
run: "npm run release"
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|