Skip to content
This repository has been archived by the owner on Jun 7, 2024. It is now read-only.

Update main.yml

Update main.yml #18

Workflow file for this run

name: Compile and Release
on: push
jobs:
Compile:
name: Compile
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Ahk2Exe
uses: CCCC-L/Action-Ahk2Exe@main
with:
in: GenshinClicker.ahk
base: 64
- name: Artifacts
uses: actions/upload-artifact@v3
with:
name: GenshinClicker-x86-64
path: GenshinClicker.exe
retention-days: 90 # max
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: GenshinClicker.exe
env:
GITHUB_TOKEN: ${{secrets.GHTOKEN}}