Update/Fix Release Workflow
All checks were successful
All checks were successful
This commit is contained in:
parent
1b922e4d37
commit
0d99cffb34
1 changed files with 6 additions and 2 deletions
|
@ -29,12 +29,15 @@ jobs:
|
||||||
-
|
-
|
||||||
name: Compiling To Linux Target
|
name: Compiling To Linux Target
|
||||||
run: cargo build -r
|
run: cargo build -r
|
||||||
|
-
|
||||||
|
name: Rename Build Output
|
||||||
|
run: mv ./target/release/ascendance-of-a-bookworm-bot ./bookworm-bot-linux-amd64
|
||||||
-
|
-
|
||||||
name: Uploading Build Artifact
|
name: Uploading Build Artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: bookworm-bot-linux-amd64
|
name: bookworm-bot-linux-amd64
|
||||||
path: /workspace/${{ secrets.FORGEJO_USERNAME }}/${{ github.event.repository.name }}/target/release/ascendance-of-a-bookworm-bot
|
path: ./bookworm-bot-linux-amd64
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
upload-release:
|
upload-release:
|
||||||
|
@ -45,6 +48,8 @@ jobs:
|
||||||
-
|
-
|
||||||
name: Downloading All Build Artifacts
|
name: Downloading All Build Artifacts
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
path: ./
|
||||||
-
|
-
|
||||||
name: Debug Workflow
|
name: Debug Workflow
|
||||||
run: |
|
run: |
|
||||||
|
@ -58,7 +63,6 @@ jobs:
|
||||||
curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
|
curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
|
||||||
--upload-file /workspace/${{ secrets.FORGEJO_USERNAME }}/${{ github.event.repository.name }}/bookworm-bot-linux-amd64/bookworm-bot-linux-amd64 \
|
--upload-file /workspace/${{ secrets.FORGEJO_USERNAME }}/${{ github.event.repository.name }}/bookworm-bot-linux-amd64/bookworm-bot-linux-amd64 \
|
||||||
https://forgejo.neshweb.net/api/packages/${{ secrets.FORGEJO_USERNAME }}/generic/${{ github.event.repository.name }}/${{ github.ref_name }}/bookworm-bot-linux-amd64
|
https://forgejo.neshweb.net/api/packages/${{ secrets.FORGEJO_USERNAME }}/generic/${{ github.event.repository.name }}/${{ github.ref_name }}/bookworm-bot-linux-amd64
|
||||||
echo Uploaded Artifact to Package Registry
|
|
||||||
#-
|
#-
|
||||||
# name: Release New Version
|
# name: Release New Version
|
||||||
# uses: actions/forgejo-release@v1
|
# uses: actions/forgejo-release@v1
|
||||||
|
|
Loading…
Reference in a new issue