-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
36 additions
and
36 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,41 @@ | ||
name: Create release build | ||
# name: Create release build | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
logLevel: | ||
description: 'Log level' | ||
tags: | ||
description: 'Test scenario tags' | ||
environment: | ||
description: 'Environment to run tests against' | ||
# on: | ||
# workflow_dispatch: | ||
# inputs: | ||
# logLevel: | ||
# description: 'Log level' | ||
# tags: | ||
# description: 'Test scenario tags' | ||
# environment: | ||
# description: 'Environment to run tests against' | ||
|
||
permissions: | ||
contents: write | ||
# permissions: | ||
# contents: write | ||
|
||
jobs: | ||
create: | ||
name: Create release build | ||
runs-on: ubuntu-latest | ||
env: | ||
BRANCH: main | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
cache: npm | ||
# jobs: | ||
# create: | ||
# name: Create release build | ||
# runs-on: ubuntu-latest | ||
# env: | ||
# BRANCH: main | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
# - uses: actions/setup-node@v3 | ||
# with: | ||
# node-version: 18 | ||
# cache: npm | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
- name: Build website | ||
run: npm run build | ||
# - name: Install dependencies | ||
# run: npm ci | ||
# - name: Build website | ||
# run: npm run build | ||
|
||
- name: Push | ||
uses: s0/git-publish-subdir-action@develop | ||
env: | ||
REPO: self | ||
BRANCH: build-release # The branch name where you want to push the assets | ||
FOLDER: build # The directory where your assets are generated | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # GitHub will automatically add this - you don't need to bother getting a token | ||
MESSAGE: "Build: ({sha}) {msg}" # The commit message | ||
# - name: Push | ||
# uses: s0/git-publish-subdir-action@develop | ||
# env: | ||
# REPO: self | ||
# BRANCH: build-release # The branch name where you want to push the assets | ||
# FOLDER: build # The directory where your assets are generated | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # GitHub will automatically add this - you don't need to bother getting a token | ||
# MESSAGE: "Build: ({sha}) {msg}" # The commit message |