fix: bundle extension using tsup (#268) #84
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 2020-2022 Tauri Programme within The Commons Conservancy | |
# SPDX-License-Identifier: Apache-2.0 | |
# SPDX-License-Identifier: MIT | |
name: covector version | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
version-or-publish: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: write # required for workflow_dispatch | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: git config | |
run: | | |
git config --global user.name "${{ github.event.pusher.name }}" | |
git config --global user.email "${{ github.event.pusher.email }}" | |
- name: covector version | |
uses: jbolda/covector/packages/action@covector-v0 | |
id: covector | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
command: 'version-or-publish' | |
createRelease: false | |
- name: Create Pull Request With Versions Bumped | |
if: steps.covector.outputs.commandRan == 'version' | |
uses: tauri-apps/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: covector/version-updates | |
title: Apply Version Updates From Current Changes | |
commit-message: 'apply version updates' | |
labels: 'version updates' | |
body: ${{ steps.covector.outputs.change }} | |
- name: Trigger publish.yml workflow | |
if: | | |
steps.covector.outputs.successfulPublish == 'true' && | |
contains(steps.covector.outputs.packagesPublished, 'tauri-vscode') | |
run: gh workflow run 1813401 -r dev | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |