ci: fix Forgejo action URLs with explicit github.com prefix
Some checks failed
release / Build (darwin/amd64) (push) Successful in 48s
release / Build (linux/amd64) (push) Successful in 26s
release / Build (windows/amd64) (push) Successful in 25s
release / Build (darwin/arm64) (push) Successful in 25s
release / Build (linux/arm64) (push) Successful in 26s
release / Build (windows/arm64) (push) Successful in 27s
release / Publish release (push) Failing after 13s
Some checks failed
release / Build (darwin/amd64) (push) Successful in 48s
release / Build (linux/amd64) (push) Successful in 26s
release / Build (windows/amd64) (push) Successful in 25s
release / Build (darwin/arm64) (push) Successful in 25s
release / Build (linux/arm64) (push) Successful in 26s
release / Build (windows/arm64) (push) Successful in 27s
release / Publish release (push) Failing after 13s
This commit is contained in:
parent
02adc56ae5
commit
9fc0562ace
1 changed files with 5 additions and 5 deletions
|
|
@ -37,12 +37,12 @@ jobs:
|
||||||
ext: '.exe'
|
ext: '.exe'
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: https://github.com/actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Setup Go
|
- name: Setup Go
|
||||||
uses: actions/setup-go@v5
|
uses: https://github.com/actions/setup-go@v5
|
||||||
with:
|
with:
|
||||||
go-version: '1.26'
|
go-version: '1.26'
|
||||||
cache: false
|
cache: false
|
||||||
|
|
@ -63,7 +63,7 @@ jobs:
|
||||||
ls -lh "$OUT"
|
ls -lh "$OUT"
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: https://github.com/actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: rony-llm-agent-${{ matrix.os }}-${{ matrix.arch }}
|
name: rony-llm-agent-${{ matrix.os }}-${{ matrix.arch }}
|
||||||
path: dist/rony-llm-agent-*
|
path: dist/rony-llm-agent-*
|
||||||
|
|
@ -77,7 +77,7 @@ jobs:
|
||||||
contents: write
|
contents: write
|
||||||
steps:
|
steps:
|
||||||
- name: Download all artifacts
|
- name: Download all artifacts
|
||||||
uses: actions/download-artifact@v3
|
uses: https://github.com/actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
path: dist
|
path: dist
|
||||||
|
|
||||||
|
|
@ -94,7 +94,7 @@ jobs:
|
||||||
ls -lh
|
ls -lh
|
||||||
|
|
||||||
- name: Create Forgejo release
|
- name: Create Forgejo release
|
||||||
uses: softprops/action-gh-release@v2
|
uses: https://github.com/softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
name: ${{ github.ref_name }}
|
name: ${{ github.ref_name }}
|
||||||
prerelease: ${{ contains(github.ref_name, '-') }}
|
prerelease: ${{ contains(github.ref_name, '-') }}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue