perf: Update Dockerfile with new base image tag #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create Release And Upload assets | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
create-release: | |
name: Create Release | |
runs-on: ubuntu-latest | |
outputs: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Get version | |
id: get_version | |
run: | | |
TAG=$(basename ${GITHUB_REF}) | |
echo "{TAG}={$TAG}" >> $GITHUB_OUTPUT | |
- name: Create Release | |
id: create_release | |
uses: release-drafter/release-drafter@v6 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
config-name: release-config.yml | |
version: ${{ steps.get_version.outputs.TAG }} | |
tag: ${{ steps.get_version.outputs.TAG }} | |
- name: Extract repository name | |
run: echo "REPO=$(basename ${{ github.repository }})" >> $GITHUB_ENV | |
- name: Remove 'v' prefix from tag | |
run: echo "TAG=$(echo ${{ steps.get_version.outputs.TAG }} | sed 's/^v//')" >> $GITHUB_ENV | |
- name: Install Nodejs | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- uses: pnpm/action-setup@v3 | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 9 | |
run_install: false | |
- name: Build web | |
run: | | |
sed -i "s@\"Version\": .*@\"Version\": \"${{ env.TAG }}\",@" public/platform-config.json | |
sed -i "s@\"version\": .*@\"version\": \"${{ env.TAG }}\",@" package.json | |
pnpm install --frozen-lockfile | |
pnpm build | |
- name: Create Upload Assets | |
run: | | |
mv dist ${{ env.REPO }}-${{ steps.get_version.outputs.TAG }} | |
tar -czf ${{ env.REPO }}-${{ steps.get_version.outputs.TAG }}.tar.gz ${{ env.REPO }}-${{ steps.get_version.outputs.TAG }} | |
echo $(md5sum ${{ env.REPO }}-${{ steps.get_version.outputs.TAG }}.tar.gz | awk '{print $1}') > ${{ env.REPO }}-${{ steps.get_version.outputs.TAG }}.tar.gz.md5 | |
- name: Release Upload Assets | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
draft: true | |
files: | | |
${{ env.REPO }}-${{ steps.get_version.outputs.TAG }}.tar.gz | |
${{ env.REPO }}-${{ steps.get_version.outputs.TAG }}.tar.gz.md5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |