Last active
May 12, 2020 12:49
-
-
Save merltron-pa/f1336e1a6885c56bd25ba50d8e23eee4 to your computer and use it in GitHub Desktop.
Example workflow used in this article: https://medium.com/@merlin.pav/122c653c0b09?source=friends_link&sk=4ca7d4ab89ce41f2118a1d9aad50807d
This file contains hidden or 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: Publish Docker Image | |
uses: elgohr/[email protected] | |
env: | |
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} | |
with: | |
name: ${{ env.DOCKER_IMAGE }} | |
username: ${{ steps.gcloud.outputs.username }} | |
password: ${{ steps.gcloud.outputs.password }} | |
registry: ${{ env.DOCKER_REGISTRY }} | |
tag_names: true | |
buildargs: SSH_PRIVATE_KEY |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment