Docker dev #3
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: Docker dev | |
on: | |
workflow_run: | |
workflows: ["CI"] | |
branches: ["main"] | |
types: | |
- completed | |
env: | |
FORCE_COLOR: 3 | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
jobs: | |
release_docker: | |
name: Build docker images (API, Web) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Login to DockerHub | |
if: github.event_name != 'pull_request' | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Set Github ENV variables | |
shell: bash | |
run: | | |
echo "BUILD_TIMESTAMP=$(date '+%F %H:%M:%S')" >> $GITHUB_ENV | |
echo "GIT_COMMIT=$(git rev-parse HEAD)" >> $GITHUB_ENV | |
- name: Build and push (api) | |
uses: docker/[email protected] | |
with: | |
context: . | |
push: true | |
target: api | |
tags: blossomlabs/blobscan-api:development | |
build-args: | | |
BUILD_TIMESTAMP=${{ env.BUILD_TIMESTAMP }} | |
GIT_COMMIT=${{ env.GIT_COMMIT }} | |
- name: Build and push (web) | |
uses: docker/[email protected] | |
with: | |
context: . | |
push: true | |
target: web | |
tags: blossomlabs/blobscan-web:development | |
build-args: | | |
BUILD_TIMESTAMP=${{ env.BUILD_TIMESTAMP }} | |
GIT_COMMIT=${{ env.GIT_COMMIT }} |