mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-27 12:05:26 +00:00
9a4c7e4446
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
64 lines
1.8 KiB
YAML
64 lines
1.8 KiB
YAML
name: Build Docker images for PRs
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-$${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
pull-requests: read
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 2
|
|
- name: Get changed files
|
|
id: changed-files
|
|
uses: dorny/paths-filter@v3
|
|
with:
|
|
filters: |
|
|
files:
|
|
- '*.nix'
|
|
- 'go.*'
|
|
- '**/*.go'
|
|
- 'integration_test/'
|
|
- 'config-example.yaml'
|
|
- '.ko.yaml'
|
|
- uses: DeterminateSystems/nix-installer-action@main
|
|
if: steps.changed-files.outputs.files == 'true'
|
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
|
if: steps.changed-files.outputs.files == 'true'
|
|
|
|
- uses: actions/github-script@v7
|
|
id: get_pr_data
|
|
with:
|
|
script: |
|
|
return (
|
|
await github.rest.repos.listPullRequestsAssociatedWithCommit({
|
|
commit_sha: context.sha,
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
})
|
|
).data;
|
|
|
|
- name: Pull Request data
|
|
run: |
|
|
echo '${{steps.get_pr_data.outputs.result}}'
|
|
|
|
- name: Run ko build
|
|
id: build
|
|
if: steps.changed-files.outputs.files == 'true'
|
|
env:
|
|
KO_DOCKER_REPO: ghcr.io/${{ github.repository_owner }}/headscale
|
|
# TAG_PR_NAME: pr-${{ fromJson(steps.get_pr_data.outputs.result).number }}
|
|
TAG_SHA: ${{ github.sha }}
|
|
run: |
|
|
nix develop --command -- ko build --tags=$TAG_SHA ./cmd/headscale
|