Skip to content

Update ci

Update ci #2

Workflow file for this run

name: Build
on:
push:
branches: [ dev ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build with AHK v1.1.37.01
uses: nukdokplex/autohotkey-build@v0.1
with:
version: v1.1.37.01
x64: true
x86: true
compression: upx
in: "src/"
out: build
icon: "icons"
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./build/answerfinder_x64.exe
asset_name: answerfinder_x64.exe
asset_content_type: application/exe