Publish package to winget #201
This file contains hidden or 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
name: Publish package to winget | |
on: | |
workflow_run: | |
workflows: ["Build package"] | |
types: | |
- completed | |
workflow_dispatch: | |
inputs: | |
version: | |
description: "DVC Version" | |
required: true | |
type: string | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }} | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: cargo-bins/cargo-binstall@main | |
- run: cargo binstall komac -y | |
- name: find dvc version | |
if: ${{ github.event_name == 'workflow_run' }} | |
id: version | |
run: | | |
echo version=$(awk -F'"' '/^ *VERSION *= *"/{ print $2; exit }' download.py) >> $GITHUB_OUTPUT | |
- run: ./winget-publish.sh ${{ github.event.inputs.version || steps.version.outputs.version }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.WINGET_TOKEN }} | |
notify: | |
if: failure() | |
needs: [publish] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Slack Notification | |
uses: rtCamp/[email protected] | |
env: | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
SLACK_COLOR: ${{ job.status }} | |
SLACK_MESSAGE: 'Winget publish failed for ${{ github.repository }}' | |
SLACK_TITLE: CI Status | |
SLACK_USERNAME: dvc-pkg-build |