Release Workflow #18
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: Release Workflow | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v1 | |
- name: Installing dependencies | |
run: bun install | |
- name: Build for production | |
run: bun run build | |
- name: Rename build folder | |
run: mv build EDN_Auto_V3 | |
- name: Compress build | |
run: zip -r EDN_Auto_V3.zip EDN_Auto_V3 | |
- name: Generate MD5 Checksum | |
run: md5sum EDN_Auto_V3.zip > checksum.md5 | |
- uses: ncipollo/release-action@v1 | |
with: | |
artifacts: "EDN_Auto_V3.zip,checksum.md5" | |
bodyFile: "RELEASE.md" |