Skip to content

Commit

Permalink
gha environments and upload artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
Robpol86 committed Sep 16, 2023
1 parent d966837 commit 0171cac
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,17 @@ name: Build
on:
pull_request:
push:
workflow_call:
inputs:
environment:
required: false
type: string

jobs:

Build:
runs-on: ubuntu-latest
environment: ${{ inputs.environment }}
steps:

- name: Checkout
Expand Down Expand Up @@ -38,3 +44,10 @@ jobs:

- name: Build
run: hugo --minify

- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: public
path: public
if-no-files-found: error
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ The format is loosely based on [Keep a Changelog](https://keepachangelog.com/en/

## [Unreleased]

- Fixed missing backslashes in ImageCFG page.
- Switched from Python Sphinx to Golang Hugo
- Fixed missing backslashes in ImageCFG page

## [2022.12.11]

Expand Down

0 comments on commit 0171cac

Please sign in to comment.