edit 3
Some checks failed
Build and Publish Release / Build Linux (release) Successful in 2m0s
Build and Publish Release / Build Windows (release) Successful in 4m42s
Build and Publish Release / Upload Assets to Release (release) Failing after 8s

This commit is contained in:
borderban 2026-05-02 17:41:04 +05:00
parent 723e8d7b6e
commit 2658b5f5bf

View file

@ -71,14 +71,16 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Download all artifacts - name: Download all artifacts
uses: actions/download-artifact@v3 uses: actions/download-artifact@v4
with:
path: artifacts
- name: Add files to Forgejo Release - name: Add files to Forgejo Release
uses: softprops/action-gh-release@v1 # Обрати внимание: теперь тут полная ссылка на GitHub
uses: https://github.com/softprops/action-gh-release@v2
with: with:
files: | files: |
linux-build/factorio-mod-sync-linux artifacts/linux-build/factorio-mod-sync-linux
windows-build/factorio-mod-sync-windows.exe artifacts/windows-build/factorio-mod-sync-windows.exe
env: env:
# В Forgejo GITHUB_TOKEN автоматически мапится на внутренний токен доступа
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}