Bump _minutes from 6c1e198
to 577fbea
#1404
Workflow file for this run
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 | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Build static website | |
run: ./build.sh | |
env: | |
UID: 1001 | |
- name: Create website archive | |
run: tar -zcvf ${{ github.event.repository.name }}.tar.gz -C _site ./ | |
- name: Upload website archive as artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ github.event.repository.name }}.tar.gz | |
path: ${{ github.event.repository.name }}.tar.gz | |
release: | |
if: startsWith(github.ref, 'refs/tags') | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download website archive | |
uses: actions/download-artifact@v3 | |
with: | |
name: ${{ github.event.repository.name }}.tar.gz | |
- name: Create checksum | |
run: sha256sum --tag ${{ github.event.repository.name }}.tar.gz > SHASUMS | |
- name: Create release | |
id: create_release | |
uses: softprops/action-gh-release@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
name: Release ${{ github.ref_name }} | |
draft: false | |
prerelease: false | |
files: | | |
${{ github.event.repository.name }}.tar.gz | |
SHASUMS |