update css and fix scroll button #115
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: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
- name: Install dependencies | |
run: npm ci | |
- name: Build static files | |
run: npm run build --if-present | |
- 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 }} |