-
Notifications
You must be signed in to change notification settings - Fork 1
58 lines (47 loc) · 1.4 KB
/
Copy pathdocker.yml
File metadata and controls
58 lines (47 loc) · 1.4 KB
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
name: "Docker"
on:
workflow_dispatch:
push:
schedule:
- cron: "0 8 * * 1"
permissions:
contents: read
jobs:
build:
name: "Build (${{ matrix.image }})"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
image: [fx, php, nodejs, golang, python]
steps:
- name: Checkout
uses: actions/checkout@v6
# Builds into the local Docker daemon, so no export or import step
- name: Build image
run: make build DOCKER_VARIANT=${{ matrix.image }}
- name: Smoke test image
run: make test DOCKER_VARIANT=${{ matrix.image }}
- name: Login to DockerHub
if: ${{ github.ref == 'refs/heads/master' }}
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Push image
if: ${{ github.ref == 'refs/heads/master' }}
run: make push DOCKER_VARIANT=${{ matrix.image }}
docs:
name: "Docs"
needs: build
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/master' }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Update Docker Hub description
uses: peter-evans/dockerhub-description@v5
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
repository: dockette/coder