chore(deps): update dependency vite to v5.4.8 (#160) #180
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2019-2022 Tauri Programme within The Commons Conservancy | |
# SPDX-License-Identifier: Apache-2.0 | |
# SPDX-License-Identifier: MIT | |
name: version or publish | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
version-or-publish: | |
runs-on: ubuntu-latest | |
timeout-minutes: 65 | |
permissions: | |
actions: write # required for workflow_dispatch | |
contents: write # required to create new releases | |
pull-requests: write # required to open version update pr | |
id-token: write # pnpm provenance | |
outputs: | |
change: ${{ steps.covector.outputs.change }} | |
commandRan: ${{ steps.covector.outputs.commandRan }} | |
successfulPublish: ${{ steps.covector.outputs.successfulPublish }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- run: corepack enable | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
registry-url: 'https://registry.npmjs.org' | |
cache: 'pnpm' | |
- name: covector version or publish (publish when no change files present) | |
uses: jbolda/covector/packages/action@covector-v0 | |
id: covector | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.ORG_NPM_TOKEN }} | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
command: "version-or-publish" | |
createRelease: true | |
recognizeContributors: true | |
- name: Create Pull Request With Versions Bumped | |
if: steps.covector.outputs.commandRan == 'version' | |
uses: tauri-apps/create-pull-request@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: release/version-updates | |
title: Apply Version Updates From Current Changes | |
commit-message: "apply version updates" | |
labels: "version updates" | |
body: ${{ steps.covector.outputs.change }} |