feat: apply new repo structure and build versioned tag #2
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: readme | |
"on": | |
push: | |
branches: | |
- master | |
paths: | |
- README.md | |
workflow_dispatch: | |
jobs: | |
readme: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Push readme | |
uses: actionhippie/pushrm@v1 | |
if: github.event_name != 'pull_request' | |
with: | |
provider: dockerhub | |
target: webhippie/vulcand | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
description: Docker image for vulcand | |
readme: README.md | |
- name: Push readme | |
uses: actionhippie/pushrm@v1 | |
with: | |
provider: quay | |
target: quay.io/webhippie/vulcand | |
apikey: ${{ secrets.QUAY_APIKEY }} | |
readme: README.md | |
... |