On new releases (tags) github automatically pushes new image to pyguy/first-website docker repository.
Create a new release like the following:
git fetch
git tag v0.0.2 # new tag
git push origin v0.0.2After the github actions is sucessful, run the following to deploy the app:
kubectl --record -n atieh set image deploy/first-website first-website=pyguy/first-website:v0.0.2 # new tagReplace v0.0.2 above with the new tag created.