Skip to content

Commit

Permalink
updater: ignore symlink so its not commited
Browse files Browse the repository at this point in the history
Signed-off-by: lucasew <lucas59356@gmail.com>
  • Loading branch information
lucasew committed Nov 25, 2024
1 parent f72063d commit 9486a74
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/update-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
run: nix flake update

- name: Build upstream tailscale source
run: 'nix build nixpkgs#tailscale.src -o output_ts'
run: 'nix build nixpkgs#tailscale.src -o result_ts'

- name: Fetch lockfile from Tailscale
run: cp output_ts/{go.mod,go.sum} . && sed -i 's;module tailscale\.com; module github.com/lucasew/ts-proxy;' go.mod
run: cp result_ts/{go.mod,go.sum} . && sed -i 's;module tailscale\.com; module github.com/lucasew/ts-proxy;' go.mod

- name: Update minor and patch-level dependencies
run: go get -t ./...
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
main

# nix result link
result
result*
ts-proxyd

0 comments on commit 9486a74

Please sign in to comment.