0.1.0-pre5 #8
Workflow file for this run
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: Publish Docker image | |
on: | |
release: | |
types: [published] | |
jobs: | |
release: | |
name: Push Docker image to Docker Hub | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v3 | |
- name: Setup mirror | |
uses: self-actuated/hub-mirror@master | |
- name: Get TAG | |
id: get_tag | |
run: echo TAG=${GITHUB_REF##*/} >> $GITHUB_ENV | |
- name: Get Repo Owner | |
id: get_repo_owner | |
run: echo "REPO_OWNER=$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]')" > $GITHUB_ENV | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: "Get docker info" | |
run: | | |
echo "Actor: ${{ github.actor }}" | |
- name: "Log into GitHub Container Registry" | |
if: "github.event_name != 'pull_request'" | |
uses: "docker/login-action@v1" | |
with: | |
registry: "ghcr.io" | |
username: "${{ github.actor }}" | |
password: "${{ secrets.GITHUB_TOKEN }}" | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v4 | |
with: | |
platforms: linux/amd64,linux/arm64 | |
build-args: | | |
VERSION=${{ env.TAG }} | |
GitCommit=${{ github.sha }} | |
context: . | |
push: true | |
tags: | | |
ghcr.io/${{ env.REPO_OWNER }}/squid:${{ github.sha }} | |
ghcr.io/${{ env.REPO_OWNER }}/squid:${{ env.TAG }} | |
ghcr.io/${{ env.REPO_OWNER }}/squid:latest | |
labels: | | |
LABEL org.opencontainers.image.source="https://github.com/${{ env.REPO_OWNER }}/squid" | |
- name: Run chart-releaser | |
uses: helm/chart-releaser-action@v1.5.0 | |
with: | |
charts_dir: charts/squid | |
env: | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
# - name: Chart | Push | |
# uses: appany/helm-oci-chart-releaser@v0.3.0 | |
# with: | |
# name: squid | |
# repository: "${{ env.REPO_OWNER }}" | |
# tag: "${{ env.TAG }}" | |
# path: charts/squid | |
# registry: ghcr.io | |
# registry_username: "${{ github.actor }}" | |
# registry_password: "${{ secrets.GITHUB_TOKEN }}" | |
# update_dependencies: 'false' | |