Skip to content

Commit

Permalink
Update build-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
scheuclu authored Apr 4, 2024
1 parent 2343b03 commit 7dcfb4c
Showing 1 changed file with 36 additions and 36 deletions.
72 changes: 36 additions & 36 deletions .github/workflows/build-release.yml
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

0 comments on commit 7dcfb4c

Please sign in to comment.