Bump Winget PR #8
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: Bump Winget PR | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| winget-bump: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Get release version | |
| run: | | |
| # Extract tag | |
| TAG_NAME="${{ github.event.release.tag_name }}" | |
| if [ -z "$TAG_NAME" ]; then | |
| TAG_NAME=$(git fetch --tags && git describe --tags $(git rev-list --tags --max-count=1)) | |
| fi | |
| # Remove 'v' before tag | |
| VERSION=$(echo "$TAG_NAME" | sed 's/^v//') | |
| echo "Release version: $VERSION" | |
| echo "VERSION=$VERSION" >> $GITHUB_ENV | |
| - name: Use winget-releaser to create a PR | |
| uses: vedantmgoyal9/winget-releaser@main | |
| with: | |
| identifier: "Nethesis.NethLink" | |
| version: ${{ env.VERSION }} | |
| token: ${{ secrets.WINGET_GITHUB_TOKEN }} | |
| fork-user: edospadoni | |
| release-tag: v${{ env.VERSION }} |