From 43bd4c620e9ba7b7759cee81e6f8e613044c22de Mon Sep 17 00:00:00 2001 From: Jordan Rash Date: Tue, 16 Mar 2021 12:58:43 -0600 Subject: [PATCH] Automation init --- .github/workflows/publish.yml | 47 +++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..4620dbf --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,47 @@ +name: Package +on: + release: + types: [released, edited] + +jobs: + push_to_registry: + name: Push Docker image to GitHub Packages + runs-on: ubuntu-latest + steps: + - + name: Check out the repo + uses: actions/checkout@v2 + - + name: Determine Short SHA + run: echo ${{ github.sha }} | tail -c 8 | (read; echo SHORT_SHA=$REPLY) >> $GITHUB_ENV + - + name: Sanitize Repo Name for Tagging + run: echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]' | (read; echo REPO_LOWER=$REPLY) >> $GITHUB_ENV + - + name: Set up QEMU + uses: docker/setup-qemu-action@v1 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + - + name: Login to GitHub Container Registry + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ secrets.CLOUDY_USERNAME }} + password: ${{ secrets.CLOUDY_TOKEN }} + - + name: Build and push + id: docker_build + uses: docker/build-push-action@v2 + with: + push: true + tags: | + ghcr.io/${{ env.REPO_LOWER }}:latest + ghcr.io/${{ env.REPO_LOWER }}:${{ env.SHORT_SHA }} + labels: | + org.opencontainers.image.source=https://github.com/${{ github.repository }} + - + name: Image digest + run: echo ${{ steps.docker_build.outputs.digest }} +