This repository has been archived by the owner on Jun 17, 2024. It is now read-only.
Merge pull request #149 from kevinriex/license-update #277
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: Build Project for manual deployment | |
on: | |
push: | |
branches: ["main", "dev"] | |
workflow_dispatch: | |
permissions: | |
contents: write | |
id-token: write | |
pull-requests: write | |
concurrency: | |
group: "build" | |
cancel-in-progress: false | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "lts/*" | |
cache: npm | |
- name: Restore Cache | |
uses: actions/cache@v4 | |
with: | |
path: .next/cache | |
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }} | |
restore-keys: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}- | |
- name: Install dependencies | |
run: npm ci | |
- name: Install additional dependencies | |
run: | | |
sudo apt-get install ghostscript | |
sudo apt-get install graphicsmagick | |
- name: Build project | |
run: npm run build | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: project-build-${{ github.sha }} | |
path: ./out | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
id: auto-commit-action | |
with: | |
file_pattern: 'public/*.json' | |
commit_message: 'chore: update license.json' | |
create_branch: true | |
branch: license-update | |
push_options: -f | |
- name: Create license.json update PR | |
if: steps.auto-commit-action.outputs.changes_detected == 'true' | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
gh pr create \ | |
--title "Update license.json" \ | |
--body "This PR was generated automatically." \ | |
--head license-update \ | |
--base ${{ github.ref_name }} \ | |
-r kevinriex,kdev \ | |
|| \ | |
gh pr edit \ | |
--title "Update license.json" \ | |
--body "This PR was generated automatically." \ | |
--base ${{ github.ref_name }} |