-
Notifications
You must be signed in to change notification settings - Fork 22
47 lines (45 loc) · 1.3 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
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