forked from ARoefer/rosvenv
-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (58 loc) · 1.58 KB
/
docker.yaml
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
name: Docker
on:
schedule:
- cron: "0 17 * * 6"
push:
branches:
- main
pull_request:
paths:
- Dockerfile
- entrypoint.sh
- .github/workflows/docker.yaml
workflow_dispatch:
env:
PUSH: ${{ (github.event_name != 'pull_request') && (github.repository == 'apl-ocean-engineering/rosvenv') }}
jobs:
docker_build:
strategy:
fail-fast: false
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log into registry
if: env.PUSH == 'true'
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract Docker metadata
if: env.PUSH == 'true'
id: meta
uses: docker/[email protected]
with:
images: ghcr.io/${{ github.repository }}
flavor: |
latest=auto
tags: |
type=sha
type=schedule
type=ref,event=branch
type=ref,event=tag
type=ref,event=pr
type=raw,value=latest,enable={{is_default_branch}}
- name: Build and push Docker image
uses: docker/[email protected]
with:
context: .
file: Dockerfile
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
push: ${{ env.PUSH }}