redo to save user clock position, not location #17
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: Development Image Create and Push | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the repo | |
| uses: actions/checkout@v4 | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v1 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.IMAGE_UPLAOD_TOKEN }} | |
| - name: Build and Push Image to ghcr.io | |
| run: | | |
| docker build . -t ghcr.io/wizard-clock/wizarding-clock-server:dev | |
| docker push ghcr.io/wizard-clock/wizarding-clock-server:dev |