-
Notifications
You must be signed in to change notification settings - Fork 13
80 lines (69 loc) · 2.92 KB
/
main.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
name: Docker image build
on:
workflow_dispatch:
push:
branches:
- 'secure-and-more-better'
# - 'main'
tags:
- '*'
pull_request:
branches:
- 'main'
jobs:
build-and-push-images:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
attestations: write
id-token: write
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@v4
- name: 'Set up QEMU'
uses: docker/setup-qemu-action@v3
- name: 'Set up Docker Buildx'
uses: docker/setup-buildx-action@v3
- name: 'Login to Docker Hub'
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: 'Build and push Docker image throwtheswitch/madsciencelab:${{ github.ref_name }}'
id: push
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
file: {context}/build/standard/docker/Dockerfile
build-args: CONTAINER_VERSION=${{ github.ref_name }}
push: ${{ github.event_name != 'pull_request' }}
tags: throwtheswitch/madsciencelab:${{ github.ref_name }}, throwtheswitch/madsciencelab:latest
- name: 'Build and push Docker image throwtheswitch/madsciencelab-plugins:${{ github.ref_name }}'
id: push
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
file: {context}/build/plugins/docker/Dockerfile
build-args: CONTAINER_VERSION=${{ github.ref_name }}
push: ${{ github.event_name != 'pull_request' }}
tags: throwtheswitch/madsciencelab-plugins:${{ github.ref_name }}, throwtheswitch/madsciencelab-plugins:latest
- name: 'Build and push Docker image throwtheswitch/madsciencelab-arm-none-eabi:${{ github.ref_name }}'
id: push
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
file: {context}/build/arm-none-eabi/docker/Dockerfile
build-args: CONTAINER_VERSION=${{ github.ref_name }}
push: ${{ github.event_name != 'pull_request' }}
tags: throwtheswitch/madsciencelab-arm-none-eabi:${{ github.ref_name }}, throwtheswitch/madsciencelab-arm-none-eabi:latest
- name: 'Build and push Docker image throwtheswitch/madsciencelab-arm-none-eabi-plugins:${{ github.ref_name }}'
id: push
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
file: {context}/build/arm-none-eabi-plugins/docker/Dockerfile
build-args: CONTAINER_VERSION=${{ github.ref_name }}
push: ${{ github.event_name != 'pull_request' }}
tags: throwtheswitch/madsciencelab-arm-none-eabi-plugins:${{ github.ref_name }}, throwtheswitch/madsciencelab-arm-none-eabi-plugins:latest