diff options
Diffstat (limited to '.github/workflows/earthly.yml')
| -rw-r--r-- | .github/workflows/earthly.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/earthly.yml b/.github/workflows/earthly.yml index c7cd064..894e729 100644 --- a/.github/workflows/earthly.yml +++ b/.github/workflows/earthly.yml @@ -10,7 +10,7 @@ on: jobs: build: - runs-on: [self-hosted, linux, x64] + runs-on: ubuntu-latest permissions: contents: read packages: write @@ -23,6 +23,12 @@ jobs: with: github-token: ${{ secrets.GITHUB_TOKEN }} version: "latest" # or pin to an specific version, e.g. "0.8.1" + - name: Tailscale + uses: tailscale/github-action@v2 + with: + oauth-client-id: ${{ secrets.TAILSCALE_CLIENT_ID }} + oauth-secret: ${{ secrets.TAILSCALE_CLIENT_SECRET }} + tags: tag:ci - name: Log into registry if: github.event_name != 'pull_request' uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 |
