-
Notifications
You must be signed in to change notification settings - Fork 1
95 lines (84 loc) · 3.1 KB
/
cicd--mv-website.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name: "[mv-website] Build & Publish"
on:
push:
branches:
- "feature/cicd"
- "main"
paths:
- "mv-website/**"
- ".github/workflows/cicd--mv-website.yml"
env:
REGISTRY: ghcr.io
IMAGE_NAME: "ghcr.io/${{ github.repository }}-website"
CONTEXT_ROOT: "mv-website"
DEVL_URL: "https://dev.earlymodernviolence.org/"
PROD_URL: "https://earlymodernviolence.org/"
jobs:
build:
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
registry: ${{ env.REGISTRY }}
- name: Build and Push Docker Image for Local Dev
uses: docker/build-push-action@v4
with:
context: "${{ env.CONTEXT_ROOT }}"
push: true
tags: "${{ env.IMAGE_NAME }}:latest"
platforms: linux/amd64
- name: Build Docker Image
uses: docker/build-push-action@v4
with:
context: "${{ env.CONTEXT_ROOT }}"
push: false
tags: "${{ env.IMAGE_NAME }}:latest"
platforms: linux/amd64
build-args: |
hugobuildargs=--cleanDestinationDir --buildDrafts --buildFuture --baseURL ${{ env.DEVL_URL }}
#hugobuildargs=--cleanDestinationDir --minify --baseURL ${{ env.PROD_URL }}
- name: Extract build artifact from docker image
uses: shrink/actions-docker-extract@v2
id: extract
with:
image: "${{ env.IMAGE_NAME }}:latest"
path: /usr/share/nginx/html/
- name: Archive build artifact
run: tar czvf mv-website.tar.gz -C ${{ steps.extract.outputs.destination }}/html .
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
path: ./mv-website.tar.gz
name: mv-website
release:
needs: build
uses: chnm/.github/.github/workflows/create-release.yml@main
secrets: inherit
with:
github-run-id: "${{ github.run_id }}"
github-workflow: "${{ github.workflow }}"
github-workflow-ref: "${{ github.workflow_ref }}"
github-workflow-sha: "${{ github.workflow_sha }}"
github-workspace: "${{ github.workspace }}"
github-repository: "${{ github.repository }}"
github-repository-owner: "${{ github.repository_owner }}"
github-repository-name: "${{ github.event.repository.name }}"
github-repository-url: "${{ github.repository-url }}"
github-action-ref: "${{ github.action_ref }}"
github-event-name: "${{ github.event_name }}"
github-actor: "${{ github.actor }}"
github-triggering-actor: "${{ github.triggering_actor }}"
github-base-ref: "${{ github.base_ref }}"
github-ref-name: "${{ github.ref_name }}"
github-ref-type: "${{ github.ref_type }}"
github-ref: "${{ github.ref }}"
github-sha: "${{ github.sha }}"
build-artifact-name: "mv-website"
release-artifact-tarball-filename: "mv-website.tar.gz"
release-tag-name-type: "iso"