Skip to content

Commit

Permalink
👷: build test
Browse files Browse the repository at this point in the history
  • Loading branch information
kiomarzsss committed Jun 20, 2024
1 parent 9ad3280 commit d2df0bb
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,18 @@ jobs:
- name: Checkout git repo
uses: actions/checkout@v4

- name: Prepare Release Message
run: |
sed 's|RELEASE_TAG|${{ github.ref_name }}|g' ./.github/release_message.md >> release.md
- name: Set Release Message
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref_name }}
body_path: './release.md'

- name: Install Node and NPM
uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -82,15 +94,3 @@ jobs:
oblivion-desktop-win.exe
oblivion-desktop-mac-arm64.zip.blockmap
oblivion-desktop-mac-x64.zip.blockmap
- name: Prepare Release Message
run: |
sed 's|RELEASE_TAG|${{ github.ref_name }}|g' ./.github/release_message.md >> release.md
- name: Set Release Message
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref_name }}
body_path: './release.md'

0 comments on commit d2df0bb

Please sign in to comment.