-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (37 loc) · 1.27 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
# This is a basic workflow to help you get started with Actions
name: Build Bulma 4 Hugo
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
env:
GH_TOKEN: ${{ github.token }}
permissions:
contents: write
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
# Runs a set of commands using the runners shell
- name: Configure Git
run: |
git fetch --tags
git config --local core.autocrlf "false"
git config --local user.name ${{ GH_USERNAME }}
git config --global user.email ${{ GH_USERMAIL }}
git config --global user.signingkey ${{ GH_SIGNING_KEY }}
- name: Init scripts
run: |
[void](New-Item -Type Directory ./src -ErrorAction Stop)
Copy-Item ./build.ps1 ./src -ErrorAction Stop
- name: Add Bulma release
run: |
./src/build.ps1 -ErrorAction Stop
- name: Cleanup
run: |
Remove-Item -Recurse -Force .\src