You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
monolith/.github/workflows/cd.yml

22 lines
513 B
YAML

name: CD
on:
release:
types: [created]
jobs:
windows:
runs-on: windows-latest
steps:
- run: git config --global core.autocrlf false
- name: Checkout the repository
uses: actions/checkout@master
- name: Build and install the executable
run: cargo install --force --locked --path .
- uses: Shopify/upload-to-release@1.0.0
with:
name: monolith.exe
path: C:\Users\runneradmin\.cargo\bin\monolith.exe
repo-token: ${{ secrets.GITHUB_TOKEN }}