Update alpine Docker tag to v3.22 #52
Workflow file for this run
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: publish | |
| on: [push] | |
| jobs: | |
| publish-hello-world-image: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v1 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build the hello-world Docker image | |
| run: | | |
| docker build . --tag ghcr.io/jonashackt/hello-world:latest | |
| docker run ghcr.io/jonashackt/hello-world:latest | |
| docker push ghcr.io/jonashackt/hello-world:latest | |