We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac73cf3 commit 90f16ccCopy full SHA for 90f16cc
.github/workflows/build-dev.yml
@@ -15,14 +15,17 @@ concurrency:
15
16
jobs:
17
build:
18
- runs-on: ubuntu-latest
+ runs-on: ubuntu-latest
19
container:
20
image: ghcr.io/socoldkiller/headscale-build:dev
21
credentials:
22
username: ${{ github.actor }}
23
password: ${{secrets.GITHUB_TOKEN}}
24
steps:
25
- uses: actions/checkout@v4
26
+ with:
27
+ set-safe-directory: true
28
+
29
- name: Build frontend
30
run: |
31
git clone https://github.com/socoldkiller/headscale-ui.git
@@ -35,9 +38,8 @@ jobs:
35
38
36
39
- name: Build binary
37
40
- git --no-pager log --oneline -10
41
go build -ldflags="-s -w" -o headscale ./cmd/headscale
-
42
43
- name: Login to GHCR
44
uses: docker/login-action@v3
45
with:
0 commit comments