Merge pull request #100 from cp6/main #211
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
on: | |
push: | |
jobs: | |
build: | |
name: Build, push, and deploy | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Build container image | |
run: | | |
docker build \ | |
--tag ghcr.io/cp6/my-idlers:$(echo $GITHUB_SHA | head -c7) \ | |
--tag ghcr.io/cp6/my-idlers:latest \ | |
. | |
- name: Container registry login | |
run: | | |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u "${{ github.actor }}" --password-stdin | |
- name: Push image to GHCR | |
if: github.ref == 'refs/heads/main' | |
run: | | |
docker push ghcr.io/cp6/my-idlers:$(echo $GITHUB_SHA | head -c7) | |
docker push ghcr.io/cp6/my-idlers:latest |