Skip to content

Merge pull request #10 from Kuuuube/add-checkout-to-config-update #5

Merge pull request #10 from Kuuuube/add-checkout-to-config-update

Merge pull request #10 from Kuuuube/add-checkout-to-config-update #5

Workflow file for this run

name: Release
on:
push:
tags:
- "*"
jobs:
build-win:
runs-on: windows-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v6
- name: Setup dependencies
run: |
rustup update stable
rustup default stable
- name: Build
run: |
powershell ./build.ps1
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
name: TabletDriverCleanup ${{ github.ref_name }}
draft: true
generate_release_notes: true
body_path: ./.github/workflows/default_release_notes.md
files: ./dist/tabletdrivercleanup.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}