Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
20 lines (18 sloc)
547 Bytes
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 bgmdatapostprocess image | |
on: | |
push: | |
paths: | |
- 'postprocess/**' | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build the Docker image | |
run: docker build postprocess --tag image | |
- name: Log into registry | |
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u wattlebird --password-stdin | |
- name: Push image | |
run: | | |
docker tag image wattlebird/bgmdatapostprocess:latest | |
docker push wattlebird/bgmdatapostprocess:latest |