Skip to content

chore(deps): bump the minor-and-patch group across 1 directory with 8… #88

chore(deps): bump the minor-and-patch group across 1 directory with 8…

chore(deps): bump the minor-and-patch group across 1 directory with 8… #88

Workflow file for this run

name: Release
on:
push:
branches: [main]
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
jobs:
release:
runs-on: ubuntu-latest
if: github.repository == 'structured-world/vue-privacy'
steps:
- name: Generate App Token
id: app-token
uses: actions/create-github-app-token@v3
with:
app-id: ${{ secrets.RELEASER_APP_ID }}
private-key: ${{ secrets.RELEASER_APP_PRIVATE_KEY }}
- uses: actions/checkout@v6
with:
fetch-depth: 0
token: ${{ steps.app-token.outputs.token }}
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 22
registry-url: "https://registry.npmjs.org"
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: yarn build
- name: Verify dist
run: |
ls -la dist/
test -f dist/index.js
test -f dist/vue/index.js
test -f dist/vitepress/index.js
test -f dist/quasar/index.js
- name: Semantic Release
env:
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
NPM_CONFIG_PROVENANCE: true
run: yarn semantic-release