Use tagged nchelpers and wps-tools #476
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: Docker Publishing | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| tags: | |
| - '[0-9]+.[0-9]+.[0-9]+' | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Publish to Registry | |
| uses: docker/build-push-action@v1 | |
| with: | |
| username: ${{ secrets.pcicdevops_at_dockerhub_username }} | |
| password: ${{ secrets.pcicdevops_at_dockerhub_password }} | |
| repository: pcic/osprey | |
| tag_with_ref: true |