Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Commit

Permalink
feature: build+push workflow actions
Browse files Browse the repository at this point in the history
  • Loading branch information
developer-guy committed Oct 30, 2020
1 parent f68a7f1 commit 88807c8
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,15 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
- name: Build
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
context: .
tags: trendyoltech/certificator:${{ steps.vars.outputs.latest_tag }}
load: true
build-args: |
BUILD_TIME=${{ steps.vars.outputs.build_time }}
VCS_REF=${{ steps.vars.outputs.sha_short }}
VCS_REF=${{ steps.vars.outputs.sha_short }}
- name: Push
run: docker push trendyoltech/certificator:${{ steps.vars.outputs.latest_tag }}

0 comments on commit 88807c8

Please sign in to comment.