-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update docker-image.yml: reverted back to 'ubuntu-latest' builder.
- Loading branch information
Showing
1 changed file
with
3 additions
and
2 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 |
---|---|---|
|
@@ -9,15 +9,15 @@ on: | |
|
||
jobs: | ||
build: | ||
runs-on: self-hosted | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Build the Docker image | ||
run: docker build --file build/Dockerfile --tag boringtun-builds:$(date +%s) build/ | ||
|
||
- uses: actions/checkout@v3 | ||
- name: Build & exctract the BoringTun packages. | ||
- name: Build & extract the BoringTun packages. | ||
run: cd build; bash ./BUILD.sh | ||
|
||
- uses: actions/[email protected] | ||
|
@@ -34,3 +34,4 @@ jobs: | |
enableCrossOsArchive: true # optional, default is false | ||
# Run the post step to save the cache even if another step before fails | ||
save-always: false # optional, default is false | ||
|