This repository has been archived by the owner on Jul 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 145
60 lines (54 loc) · 1.66 KB
/
push.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
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Push
on:
push:
branches:
- master
jobs:
build:
name: Build
# Only run this step on the upstream repo.
if: github.repository == 'pulumi/pulumi-hugo'
runs-on: ubuntu-latest
steps:
- name: Install Node
uses: actions/setup-node@v1
with:
node-version: "18.x"
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.21.x
- name: Install Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: "0.111.0"
extended: true
- name: Check out branch
uses: actions/checkout@v2
with:
token: ${{ secrets.PULUMI_BOT_TOKEN }}
- name: Build assets
run: |
make ensure ci-await build-assets
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Commit artifacts
uses: stefanzweifel/git-auto-commit-action@v4
with:
file_pattern: theme/default/assets/js/bundle.js theme/default/assets/js/marketing.js theme/default/assets/css/bundle.css theme/default/assets/css/marketing.css
commit_message: Commit asset bundles
notify:
if: failure()
name: Send slack notification
runs-on: ubuntu-latest
needs: [build]
steps:
- name: Slack Notification
uses: docker://sholung/action-slack-notify:v2.3.0
env:
SLACK_CHANNEL: docs-ops
SLACK_COLOR: "#F54242"
SLACK_MESSAGE: "build failure in pulumi-hugo repo :meow_sad:"
SLACK_USERNAME: hugobot
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_ICON: https://www.pulumi.com/logos/brand/avatar-on-white.png