Skip to content

Adjuntando binario a v0.1.0 #2

Adjuntando binario a v0.1.0

Adjuntando binario a v0.1.0 #2

Workflow file for this run

name: release-windows
run-name: Adjuntando binario a ${{ github.event.release.tag_name }}
on:
release:
types: [published]
jobs:
upload:
name: Upload release binary
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Restore binary
uses: actions/cache/restore@v4
with:
path: aleph.exe
key: aleph-${{ hashFiles('src/**/*.[chyl]', 'Makefile') }}
fail-on-cache-miss: true
- name: Upload binary
uses: AButler/[email protected]
with:
files: "aleph.exe"
repo-token: ${{ secrets.GITHUB_TOKEN }}