-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (55 loc) · 1.79 KB
/
deploy-pr.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
# SPDX-FileCopyrightText: Alliander N. V.
#
# SPDX-License-Identifier: Apache-2.0
name: deploy-pr
on:
pull_request:
branches: [main]
paths:
- dockerfiles/**
- .github/workflows/deploy-pr.yml
jobs:
docker:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Clear as much disk space as possible
shell: bash
run: |
sudo rm -rf \
"$AGENT_TOOLSDIRECTORY" \
/opt/google/chrome \
/opt/microsoft/msedge \
/opt/microsoft/powershell \
/opt/pipx \
/usr/lib/mono \
/usr/local/julia* \
/usr/local/lib/android \
/usr/local/lib/node_modules \
/usr/local/share/chromium \
/usr/local/share/powershell \
/usr/share/dotnet \
/usr/share/swift
df -h /
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Set MODIFIED_BRANCH_NAME
run: echo "MODIFIED_BRANCH_NAME=${GITHUB_HEAD_REF/\//-}" >> $GITHUB_ENV
- name: Build and push
uses: docker/build-push-action@v6
with:
push: true
context: ./dockerfiles
file: ./dockerfiles/rcdt_robotics.Dockerfile
tags: |
rcdt/robotics:${{ env.MODIFIED_BRANCH_NAME }}-${{ github.sha }}
rcdt/robotics:${{ env.MODIFIED_BRANCH_NAME }}-latest
cache-from: type=registry,ref=rcdt/robotics:build-cache
cache-to: type=registry,ref=rcdt/robotics:build-cache,mode=max