-
Notifications
You must be signed in to change notification settings - Fork 2
34 lines (29 loc) · 1003 Bytes
/
pushDockerRepos.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
name: Build and Push Docker Image to Docker Hub
on: push
jobs:
push_to_registry:
name: push docker image to hub
runs-on: ubuntu-latest
steps:
- name: check repository
uses: actions/checkout@v4
- name: login to docker registry
uses: docker/login-action@v3
with:
username: ${{secrets.DOCKERHUB_USERNAME}}
password: ${{secrets.DOCKERHUB_TOKEN}}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: build and push docker image to registry
uses: docker/build-push-action@v6
with:
context: .devcontainer/virtual
push: true
tags: |
mniedermaier1337/cybicsattack:latest
mniedermaier1337/cybicsopenplc:latest
mniedermaier1337/cybicsopcua:latest
mniedermaier1337/cybicsfuxa:latest
mniedermaier1337/cybicshwio:latest