Merge pull request #106 from alfredotoselli/chore/new-user-message #133
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 Develop Zip | |
on: | |
push: | |
branches: [develop] | |
paths-ignore: | |
- 'README.md' | |
- 'LICENSE' | |
- 'Dockerfile' | |
- 'docker-compose.yml' | |
- '.gitignore' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: write | |
jobs: | |
build: | |
timeout-minutes: 120 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Install dependencies | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
cache: 'pnpm' | |
- run: pnpm install --frozen-lockfile | |
- name: Build static files | |
run: pnpm run build | |
- name: Zip Release | |
uses: TheDoctor0/[email protected] | |
with: | |
type: 'zip' | |
filename: 'develop.zip' | |
directory: './dist' | |
path: '.' | |
- name: Upload Release | |
uses: ncipollo/[email protected] | |
with: | |
tag: 'Admin' | |
artifacts: './dist/develop.zip' | |
allowUpdates: true | |
replacesArtifacts: true | |
body: | | |
${{ github.event.head_commit.message }} | |
token: ${{ secrets.GITHUB_TOKEN }} |