Skip to content

Merge pull request #67 from getlantern/fix-lantern-box-builds-2 #26

Merge pull request #67 from getlantern/fix-lantern-box-builds-2

Merge pull request #67 from getlantern/fix-lantern-box-builds-2 #26

Workflow file for this run

name: docker push main
on:
push:
branches: [main]
paths:
- 'Dockerfile'
- 'go.mod'
- 'go.sum'
- '**.go'
- '!.github/**'
jobs:
go:
uses: ./.github/workflows/go.yaml
secrets: inherit
docker_push:
name: docker push
needs: [go]
runs-on: ubuntu-latest
permissions:
contents: "read"
id-token: "write"
steps:
- uses: "actions/checkout@v3"
- uses: docker/setup-buildx-action@v2
with:
install: true
- uses: google-github-actions/auth@v0
id: google_auth
with:
token_format: access_token
workload_identity_provider: projects/472305719257/locations/global/workloadIdentityPools/github-actions/providers/ghactions-provider
service_account: [email protected]
- name: docker login
uses: docker/login-action@v2
with:
registry: us-docker.pkg.dev
username: oauth2accesstoken
password: ${{ steps.google_auth.outputs.access_token }}
- name: docker push
uses: docker/build-push-action@v3
with:
secrets: |
"github_oauth_token=${{ secrets.CI_PRIVATE_REPOS_GH_TOKEN }}"
context: .
push: true
file: Dockerfile
platforms: linux/arm64,linux/amd64
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: |
BUILD_ARG=-ldflags "-X main.version=${{ github.ref_name }} -X main.commit=${{ github.sha }} -X main.buildDate=$(date -u +'%Y-%m-%dT%H:%M:%SZ')"
tags: |
us-docker.pkg.dev/lantern-cloud/containers/sing-box:latest