nukdokplex / autohotkey-build

GitHub Action for building AutoHotkey scripts
https://www.autohotkey.com/boards/viewtopic.php?t=113828
10 stars 3 forks source link

Compile multiple *.ahk script, but lost one #2

Open Jvcon opened 1 year ago

Jvcon commented 1 year ago

There is "EhAria2.ahk", "EhAria2Extension.ahk" and "EhAria2Torrent.ahk" in directory, but it always failed to compile "EhAria2.exe", "EhAria2Extension.exe" and "EhAria2Torrent.exe".

Here is my workflow yaml

name: Compile

on:
  push:
    branches: 
      - main
    tags:
      - 'v[0-9]+.[0-9]+.[0-9]+'

jobs:
  build:
    runs-on: windows-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v3
      - name: Build with AHK v2
        uses: nukdokplex/autohotkey-build@v0.1
        with:
          version: v2.0.2
          x64: true
          x64_suffix: ""
          compression: upx
          in: ""
          out: build
      - name: Do Something with builded scripts
        shell: pwsh
        run: |
          ls build
      - name: Upload
        uses: actions/upload-artifact@v3
        with:
            name: my-artifact
            path: ${{ github.workspace }}
      - name: Release
        uses: softprops/action-gh-release@v0.1.15
        if: startsWith(github.ref, 'refs/tags/')
        with:
          files: |
            build/EhAria2.exe
            build/EhAria2Extension.exe
            build/EhAria2Torrent.exe
        env:
          GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

Here is my Workflow log : Jvcon/EhAria2/actions

nukdokplex commented 1 year ago

@Jvcon Sorry for so late answer. Can you please provide some logs of this error, link is not working for now (404). Seems like this is AHK2Exe issue.

Jvcon commented 1 year ago

@Jvcon Sorry for so late answer. Can you please provide some logs of this error, link is not working for now (404). Seems like this is AHK2Exe issue.

Here is a brand new workflow recently I run, which had the same problem: https://github.com/Jvcon/EhAria2/actions/runs/6020897907

nukdokplex commented 1 year ago

Hello, unfortunately I can no longer maintain this project and am currently looking for maintainers. If you have free time, you can try to fix this problem and create a pull request.

I'm sorry that I can't help you further on this issue. Thank you very much for your patience.