Skip to content

Merge pull request #114 from MatteoGheza/main #132

Merge pull request #114 from MatteoGheza/main

Merge pull request #114 from MatteoGheza/main #132

Workflow file for this run

name: Release Main Zip
on:
push:
branches: [main, master]
paths-ignore:
- 'README.md'
- 'LICENSE'
- 'Dockerfile'
- 'docker-compose.yml'
- '.gitignore'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
issues: 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: 'TODO to Issue'
uses: alstr/todo-to-issue-action@v4
with:
IDENTIFIERS: '[{"name": "FEATURE", "labels": ["enhancement"]}, {"name": "BUG", "labels": ["bug"]}]'
ISSUE_TEMPLATE: '**Describe the reason of this issue**\n{{ body }}\n\nThe issue is present here:\n\n{{ snippet }}'
- name: Build static files
run: pnpm run build
- name: Zip Release
uses: TheDoctor0/[email protected]
with:
type: 'zip'
filename: 'release.zip'
directory: './dist'
path: '.'
- name: Upload Release
uses: ncipollo/[email protected]
with:
tag: 'Admin'
artifacts: './dist/release.zip'
allowUpdates: true
replacesArtifacts: true
body: |
${{ github.event.head_commit.message }}
token: ${{ secrets.GITHUB_TOKEN }}