Test issue 133 #142
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-hub | |
on: [push] | |
jobs: | |
build-dh: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: whoan/docker-build-with-cache-action@master | |
with: | |
username: whoan | |
password: "${{ secrets.DOCKER_HUB_PASSWORD }}" | |
build_extra_args: '{"--build-arg": ["foo=bar", "one=two"], "--target": "one-target"}' | |
image_name: hello-world | |
image_tag: latest,anotherone | |
- uses: whoan/docker-build-with-cache-action@master | |
id: multi-tag | |
with: | |
username: whoan | |
password: "${{ secrets.DOCKER_HUB_PASSWORD }}" | |
image_name: hello-world-multi-tag | |
image_tag: one,two,three | |
- name: Get full image name from multi-tag step | |
run: echo "Full image name -> ${{ steps.multi-tag.outputs.FULL_IMAGE_NAME }}" |