-
Notifications
You must be signed in to change notification settings - Fork 0
135 lines (127 loc) · 3.92 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
name: Build, test and publish
permissions:
contents: read
packages: write
security-events: write
on:
workflow_dispatch:
schedule:
- cron: "0 3 * * 3" # Build the preview image every Wednesday at 03:00
release:
types:
- published
push:
branches:
- main
- feature/**
paths:
- .github/**
- docker/**
concurrency:
group: ${{ github.ref }}-publish
cancel-in-progress: true
jobs:
# python:
# name: Python
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Build
# id: build
# uses: ./.github/actions/build
# with:
# image-name: tna-python
# docker-context: docker/tna-python
# ignore-linting-rules: DL3002,DL3006
# github-token: ${{ secrets.GITHUB_TOKEN }}
# - name: Test
# uses: ./.github/actions/test
# with:
# application-repository: nationalarchives/flask-application-template
# service: app
# image: ghcr.io/${{ github.repository_owner }}/tna-python
# image: tna-python
# image-tag: ${{ steps.build.outputs.tag }}
# python-root:
# name: Python (root)
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Build
# id: build
# uses: ./.github/actions/build
# with:
# image-name: tna-python-root
# docker-context: docker/tna-python
# user-image: root
# ignore-linting-rules: DL3002,DL3006
# github-token: ${{ secrets.GITHUB_TOKEN }}
python-django:
name: Python Django
# needs: python
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
id: build
uses: ./.github/actions/build
with:
image-name: tna-python-django
base-image: ghcr.io/nationalarchives/tna-python
docker-context: docker/tna-python-django
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: List Docker images
run: docker images
- name: Test
uses: ./.github/actions/test
with:
application-repository: nationalarchives/django-application-template
service: app
# image: ghcr.io/${{ github.repository_owner }}/tna-python-django
image: tna-python-django
image-tag: ${{ steps.build.outputs.tag }}
- name: Push
uses: ./.github/actions/push
with:
image-name: tna-python-django
image-tag: ${{ steps.build.outputs.tag }}
major-version: ${{ steps.build.outputs.major-version }}
minor-version: ${{ steps.build.outputs.minor-version }}
base-image: ghcr.io/nationalarchives/tna-python
docker-context: docker/tna-python-django
github-token: ${{ secrets.GITHUB_TOKEN }}
# python-django-root:
# name: Python Django (root)
# needs: python-root
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Build
# id: build
# uses: ./.github/actions/build
# with:
# image-name: tna-python-django-root
# base-image: ghcr.io/nationalarchives/tna-python-root
# docker-context: docker/tna-python-django
# ignore-linting-rules: DL3002
# github-token: ${{ secrets.GITHUB_TOKEN }}
# python-dev:
# name: Python Dev
# needs: python-root
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Build
# id: build
# uses: ./.github/actions/build
# with:
# image-name: tna-python-dev
# base-image: ghcr.io/nationalarchives/tna-python-root
# docker-context: docker/tna-python-dev
# ignore-linting-rules: DL3002,DL3008
# github-token: ${{ secrets.GITHUB_TOKEN }}