-
Notifications
You must be signed in to change notification settings - Fork 33
45 lines (40 loc) · 1.62 KB
/
push_dockerhub.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
name: Docker push
# This builds the docker image and pushes it to DockerHub
# Runs on artic-network/rampart repo releases
# and push event to 'dev' branch (PR merges)
on:
push:
branches:
- dev
release:
types: [published]
jobs:
push_dockerhub:
name: Push new Docker image to Docker Hub
runs-on: ubuntu-latest
if: ${{ github.repository == 'artic-network/rampart' }}
env:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_PASS: ${{ secrets.DOCKERHUB_PASS }}
steps:
- name: Remove unnecessary files
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: Check out pipeline code
uses: actions/checkout@v2
- name: Build new docker image
run: docker build --no-cache . -t articnetworkorg/rampart:latest
- name: Push Docker image to DockerHub (dev)
if: ${{ github.event_name == 'push' }}
run: |
echo "$DOCKERHUB_PASS" | docker login -u "$DOCKERHUB_USERNAME" --password-stdin
docker tag articnetworkorg/rampart:latest articnetworkorg/rampart:dev
docker push articnetworkorg/rampart:dev
- name: Push Docker image to DockerHub (release)
if: ${{ github.event_name == 'release' }}
run: |
echo "$DOCKERHUB_PASS" | docker login -u "$DOCKERHUB_USERNAME" --password-stdin
docker push articnetworkorg/rampart:latest
docker tag articnetworkorg/rampart:latest articnetworkorg/rampart:${{ github.event.release.tag_name }}
docker push articnetworkorg/rampart:${{ github.event.release.tag_name }}