Upgrade libraries & README (#42) #51
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: Publish Docker | |
on: | |
# Trigger the workflow on push request, | |
# but only for the master branch | |
push: | |
branches: | |
- master | |
release: | |
# Only use the types keyword to narrow down the activity types that will trigger your workflow. | |
types: [published, created, edited] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Publish to Registry | |
uses: elgohr/Publish-Docker-Github-Action@v5 | |
with: | |
name: spruiktec/packml-simulator | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} |