-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
1,448 additions
and
370 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
build/ | ||
dist/ | ||
.git/ | ||
metadata/ | ||
private.key | ||
private-key.pem | ||
wireguard.key | ||
protonwire.key | ||
protonvpn.key |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,64 @@ | ||
name: build | ||
on: | ||
push: | ||
tags-ignore: | ||
- "**" | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
permissions: {} | ||
|
||
jobs: | ||
shellcheck: | ||
lint: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: stable | ||
|
||
- name: Install Task | ||
run: go install github.com/go-task/task/v3/cmd/task@latest | ||
|
||
- name: Shellcheck | ||
run: make shellcheck | ||
run: task --verbose shellcheck | ||
|
||
- name: Update README | ||
run: task --verbose update-readme | ||
|
||
- name: Check if README is up-to date | ||
run: git diff --exit-code README.md | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
persist-credentials: false | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Install GoReleaser | ||
uses: goreleaser/goreleaser-action@v5 | ||
- name: Setup Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
version: latest | ||
install-only: true | ||
go-version: stable | ||
|
||
- name: Install Task | ||
run: go install github.com/go-task/task/v3/cmd/task@latest | ||
|
||
- name: Install help2man | ||
run: sudo apt-get install -y help2man | ||
- name: Install crane | ||
run: go install github.com/google/go-containerregistry/cmd/crane@latest | ||
|
||
- name: Run GoReleaser | ||
run: make snapshot | ||
- name: Build Images | ||
run: task --verbose build-images |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.