-
Notifications
You must be signed in to change notification settings - Fork 4
70 lines (60 loc) · 2.5 KB
/
docker-build-publish-dev.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
59
60
61
62
63
64
65
66
67
68
69
70
name: Build and Publish Docker Images Dev
on:
push:
branches: develop
jobs:
ever-api-starter-kit-api:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Free disk space
run: |
df -h /
sudo swapoff -a
sudo apt clean
docker image ls -aq
docker rmi $(docker image ls -aq)
find ~/work/_temp -name "cache.tgz" -exec rm -f {} \;
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
df -h /
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GH_TOKEN }}
- name: Install doctl
uses: digitalocean/action-doctl@v2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
- name: Log in to DigitalOcean Container Registry with short-lived credentials
run: doctl registry login --expiry-seconds 3600
- name: Build
uses: docker/build-push-action@v3
with:
context: .
file: ./.deploy/api/Dockerfile
load: true
platforms: linux/amd64
tags: |
ghcr.io/ever-co/ever-api-starter-kit-api-dev:latest
registry.digitalocean.com/ever/ever-api-starter-kit-api-dev:latest
cache-from: type=registry,ref=ghcr.io/ever-co/ever-api-starter-kit-api-dev:latest
cache-to: type=inline
- name: Push to DigitalOcean Registry
run: |
docker push registry.digitalocean.com/ever/ever-api-starter-kit-api-dev:latest
- name: Push to Github Registry
run: |
docker push ghcr.io/ever-co/ever-api-starter-kit-api-dev:latest