mirror of
https://github.com/remnawave/frontend.git
synced 2026-05-13 12:16:40 +00:00
chore: bump package version to 0.4.25 and update GitHub Actions workflow
This commit is contained in:
parent
90ed515cc7
commit
2e73d94de0
2 changed files with 13 additions and 7 deletions
18
.github/workflows/release-frontend.yml
vendored
18
.github/workflows/release-frontend.yml
vendored
|
|
@ -30,6 +30,10 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: NewTag
|
||||
id: tag
|
||||
uses: JinoArch/get-latest-tag@latest
|
||||
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
|
|
@ -40,9 +44,6 @@ jobs:
|
|||
npm install
|
||||
npm run start:build
|
||||
|
||||
- name: Get Tag Name
|
||||
run: echo "TAG_NAME=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
|
||||
|
||||
- name: Create ZIP archive of /dist
|
||||
run: |
|
||||
zip -r remnawave-frontend.zip ./dist
|
||||
|
|
@ -53,13 +54,18 @@ jobs:
|
|||
repo_token: ${{ secrets.GH_TOKEN }}
|
||||
file: remnawave-frontend.zip
|
||||
asset_name: remnawave-frontend.zip
|
||||
tag: ${{ env.TAG_NAME }}
|
||||
release_name: ${{ env.TAG_NAME }}
|
||||
tag: ${{ github.ref_name }}
|
||||
release_name: ${{ github.ref_name }}
|
||||
body: |
|
||||
🎉 Automatic release of Remnawave Frontend
|
||||
🎉 Automatic release of Remnawave Frontend, v${{ github.ref_name }}
|
||||
|
||||
This release was automatically created through GitHub Actions.
|
||||
|
||||
|
||||
### 📝 Changes
|
||||
|
||||
✏️ Compare: [${{ steps.tag.outputs.previousTag }}...${{ steps.tag.outputs.latestTag }}](https://github.com/${{ github.repository }}/compare/${{ steps.tag.outputs.previousTag }}...${{ steps.tag.outputs.latestTag }})
|
||||
|
||||
### 📦 Artifacts
|
||||
- remnawave-frontend.zip - archive with built frontend
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue