mirror of
https://github.com/tauri-apps/reserved-plugins.git
synced 2026-01-31 00:55:19 +01:00
55 lines
1.7 KiB
YAML
55 lines
1.7 KiB
YAML
name: version or publish
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev
|
|
|
|
permissions:
|
|
# required for npm provenance
|
|
id-token: write
|
|
# required to create the GitHub Release
|
|
contents: write
|
|
# required for creating the Version Packages Release
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
version-or-publish:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 65
|
|
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 # required for use of git history
|
|
- name: cargo login
|
|
run: cargo login ${{ secrets.ORG_CRATES_IO_TOKEN }}
|
|
- 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 or publish (publish when no change files present)
|
|
uses: jbolda/covector/packages/action@covector-v0.12
|
|
id: covector
|
|
env:
|
|
CARGO_AUDIT_OPTIONS: ${{ secrets.CARGO_AUDIT_OPTIONS }}
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
command: "version-or-publish"
|
|
createRelease: true
|
|
recognizeContributors: true
|
|
- name: Create Pull Request With Versions Bumped
|
|
id: cpr
|
|
uses: peter-evans/create-pull-request@v6
|
|
if: steps.covector.outputs.commandRan == 'version'
|
|
with:
|
|
title: "Publish New Versions"
|
|
commit-message: "publish new versions"
|
|
labels: "version updates"
|
|
branch: "release"
|
|
body: ${{ steps.covector.outputs.change }}
|