movie-web/.github/workflows/deploying.yml

132 lines
3.0 KiB
YAML
Raw Normal View History

2022-05-02 15:59:11 +02:00
name: Deploying
2021-07-14 00:31:37 +02:00
on:
push:
branches:
- master
jobs:
2023-10-25 23:04:54 +02:00
build_pwa:
name: Build PWA
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
- name: Install pnpm packages
run: pnpm install
- name: Build project
run: pnpm run build:pwa
- name: Upload production-ready build files
uses: actions/upload-artifact@v3
with:
name: pwa
path: ./dist
2021-07-14 00:31:37 +02:00
build:
name: Build
runs-on: ubuntu-latest
2023-10-25 23:04:54 +02:00
2021-07-14 00:31:37 +02:00
steps:
- name: Checkout code
2023-01-19 04:55:03 +01:00
uses: actions/checkout@v3
2023-10-25 23:04:54 +02:00
- uses: pnpm/action-setup@v2
with:
version: 8
2021-07-14 00:31:37 +02:00
- name: Install Node.js
2023-01-19 04:55:03 +01:00
uses: actions/setup-node@v3
2021-07-14 00:31:37 +02:00
with:
2023-01-19 04:55:03 +01:00
node-version: 18
2023-09-01 15:27:55 +02:00
cache: 'pnpm'
2023-10-25 23:04:54 +02:00
2023-09-01 15:27:55 +02:00
- name: Install pnpm packages
run: pnpm install
2021-07-14 00:31:37 +02:00
- name: Build project
2023-09-01 15:27:55 +02:00
run: pnpm run build
2021-07-14 00:31:37 +02:00
- name: Upload production-ready build files
2023-01-19 04:55:03 +01:00
uses: actions/upload-artifact@v3
2021-07-14 00:31:37 +02:00
with:
2023-10-25 23:04:54 +02:00
name: normal
2022-12-18 19:19:24 +01:00
path: ./dist
2022-05-02 15:59:11 +02:00
2022-12-27 14:40:43 +01:00
release:
name: Release
2023-10-25 23:04:54 +02:00
needs: [build, build_pwa]
2022-12-27 14:40:43 +01:00
runs-on: ubuntu-latest
steps:
2022-12-27 14:45:26 +01:00
- name: Checkout code
2023-01-19 04:55:03 +01:00
uses: actions/checkout@v3
2022-12-27 14:45:26 +01:00
2023-10-25 23:04:54 +02:00
- name: Download PWA artifact
2023-01-19 04:55:03 +01:00
uses: actions/download-artifact@v3
2022-12-27 14:40:43 +01:00
with:
2023-10-25 23:04:54 +02:00
name: pwa
path: ./dist_pwa
- name: Zip PWA files
run: cd dist_pwa && zip -r ../movie-web.pwa.zip .
- name: Download normal artifact
uses: actions/download-artifact@v3
with:
name: normal
path: ./dist_normal
2022-12-27 14:40:43 +01:00
2023-10-25 23:04:54 +02:00
- name: Zip normal files
run: cd dist_normal && zip -r ../movie-web.zip .
2022-12-27 14:40:43 +01:00
- name: Get version
id: package-version
uses: martinbeentjes/npm-get-version-action@main
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.package-version.outputs.current-version }}
release_name: Movie web v${{ steps.package-version.outputs.current-version }}
draft: false
prerelease: false
2023-10-25 23:04:54 +02:00
- name: Upload release (PWA)
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./movie-web.pwa.zip
asset_name: movie-web.pwa.zip
asset_content_type: application/zip
- name: Upload Release (Normal)
2022-12-27 14:41:47 +01:00
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./movie-web.zip
2022-12-27 14:52:27 +01:00
asset_name: movie-web.zip
2022-12-27 14:41:47 +01:00
asset_content_type: application/zip