chore: this commit updates the contact email, github profile url, and… #3
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: build and publish docker image | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| docker-build-and-push: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v3 | |
| - name: login docker hub | |
| uses: docker/login-action@v2 | |
| with: | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_PASSWORD }} | |
| - name: build docker image | |
| run: docker build -t httpsrichardy/federation:latest . | |
| - name: push docker image | |
| run: docker push httpsrichardy/federation:latest |