Update publish-docker-hub.yaml #3
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: Docker Image for Planetary Annihilation image on Docker Hub | |
on: | |
push | |
jobs: | |
build_and_publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build and push image | |
run: | | |
docker login --username obiwantoby --password ${{ secrets.DOCKERHUBPUSH }} | |
docker build . -t obiwantoby/pa-dedicated-server:latest | |
docker push obiwantoby/pa-dedicated-server:latest |