Release build #80
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 build | |
on: | |
release: | |
types: [published] | |
env: | |
PUBLIC_MINIO_ENDPOINT: minio.api.dsek.se | |
PUBLIC_MINIO_PORT: 443 | |
PUBLIC_MINIO_USE_SSL: true | |
PUBLIC_BUCKETS_DOCUMENTS: documents | |
PUBLIC_BUCKETS_FILES: files | |
PUBLIC_BUCKETS_MEMBERS: members | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
# fetch-tags: true # This should be enough, see https://github.com/actions/checkout/issues/1471 | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 9 | |
- name: Use Node.js latest LTS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
cache: "pnpm" | |
- run: pnpm i | |
- run: pnpm run build | |
- uses: montudor/action-zip@v1 | |
with: | |
args: zip -qq -r build.zip build src/database/prisma/schema.prisma \ | |
src/database/schema.zmodel \ | |
src/database/prisma/migrations \ | |
src/routes/api/openapi.json/openapi.json \ | |
prod/ecosystem.config.cjs \ | |
prod/server.js \ | |
package.json pnpm-lock.yaml patches | |
- uses: softprops/action-gh-release@v2 | |
with: | |
files: build.zip | |
- shell: bash | |
env: | |
JENKINS_DEPLOY_TOKEN: ${{ secrets.JENKINS_DEPLOY_TRIGGER }} | |
run: | | |
curl -L "jenkins.dsek.se/buildByToken/build?job=Deploy_web&token=$JENKINS_DEPLOY_TOKEN" |