Skip to content

Commit 95afa8d

Browse files
authored
Merge pull request #7 from rwillert/modify-build
modify release and docker build for me
2 parents 3cffc36 + 958e683 commit 95afa8d

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.github/workflows/docker-build.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
name: Build container images
22

33
on:
4-
push:
5-
branches:
6-
- "master"
7-
tags:
8-
- "*"
4+
workflow_dispatch:
5+
# push:
6+
# branches:
7+
# - "master"
8+
# tags:
9+
# - "*"
910

1011
jobs:
1112
build-image:
@@ -26,7 +27,7 @@ jobs:
2627
- name: Prepare image tags
2728
id: image-tags
2829
run: |
29-
base=ngoduykhanh/wireguard-ui
30+
base=rwillert/wireguard-ui
3031
app_version=dev
3132
3233
## Set git tag as image tag
@@ -82,10 +83,10 @@ jobs:
8283
username: ${{ secrets.DOCKERHUB_USERNAME }}
8384
password: ${{ secrets.DOCKERHUB_TOKEN }}
8485

85-
- name: Build and push
86+
- name: Build # and push
8687
uses: docker/build-push-action@v5
8788
with:
88-
push: true
89+
push: false
8990
context: .
9091
platforms: linux/amd64,linux/arm/v7,linux/arm64
9192
tags: ${{ steps.image-tags.outputs.container_images }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
github_token: ${{ secrets.GITHUB_TOKEN }}
5555
goos: ${{ matrix.goos }}
5656
goarch: ${{ matrix.goarch }}
57-
goversion: "https://dl.google.com/go/go1.21.5.linux-amd64.tar.gz"
57+
goversion: "https://dl.google.com/go/go1.23.4.linux-amd64.tar.gz"
5858
pre_command: export CGO_ENABLED=0
5959
binary_name: "wireguard-ui"
6060
build_flags: -v

0 commit comments

Comments
 (0)