Merge pull request #12 from ever-co/dependabot/npm_and_yarn/express-4… #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |