Merge pull request #8 from Eternal-Encoders/gps #7
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: Latest Image | |
| on: | |
| push: | |
| branches: | |
| - release | |
| jobs: | |
| build_and_publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Build an push an image | |
| run: | | |
| docker login --username Roaoch --password ${{ secrets.PACKAGER }} ghcr.io | |
| docker build . --tag ghcr.io/eternal-encoders/urfunavigator-web:latest | |
| docker push ghcr.io/eternal-encoders/urfunavigator-web:latest |