Skip to content
This repository was archived by the owner on Jul 12, 2025. It is now read-only.

Commit 86544ec

Browse files
Update build-stable.yml
1 parent c4c1c94 commit 86544ec

1 file changed

Lines changed: 17 additions & 5 deletions

File tree

.github/workflows/build-stable.yml

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,27 @@ jobs:
6363
cat boot.bin second_stage.bin boot32.bin boot64.bin kernel.bin > os_image.bin
6464
6565
- name: Github Actions Create Release
66-
uses: stacksjs/action-releaser@v0.0.1
66+
uses: idev-coder/github-actions-release@v1.0.0
6767
with:
68-
token: ${{ secrets.UPLOAD_TOKEN }}
68+
github_token: ${{ secrets.UPLOAD_TOKEN }}
6969
# The name of the tag. This should come from the webhook payload, `github.GITHUB_REF` when a user pushes a new tag
7070
tag: ${{ steps.version.outputs.tag_name }}
7171
# Text describing the contents of the tag.
72-
note: "Release made by GitHub Actions..."
73-
# Assets to be uploaded to the Release
74-
files: "os_image.bin"
72+
body: "Release made by GitHub Actions..."
73+
name: ${{ steps.version.outputs.version_name }}
7574
env:
7675
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7776
RELEASE_TOKEN: ${{ secrets.UPLOAD_TOKEN }}
77+
78+
- name: Publish Release Assets
79+
uses: vinayaja/publish-release-assets@v1.1.0
80+
with:
81+
# Github Token or Pat Token
82+
gh-token: ${{ secrets.UPLOAD_TOKEN }}
83+
# Release Tag
84+
release-tag: ${{ steps.version.outputs.tag_name }}
85+
# asset names, for multiple names use , seperated values
86+
asset-names: "os_image.bin"
87+
# overwrite, default is false
88+
overwrite: false
89+

0 commit comments

Comments
 (0)