mirror of
https://github.com/Threnklyn/wg-ui.git
synced 2026-05-18 21:03:30 +02:00
Release 1.2.1 (#139)
* Fix release tag to work for dockerhub builds * Bumping version to 1.2.1
This commit is contained in:
@@ -13,9 +13,6 @@ jobs:
|
|||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v1
|
uses: docker/setup-qemu-action@v1
|
||||||
|
|
||||||
@@ -28,6 +25,12 @@ jobs:
|
|||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
|
- name: Set environment variable for version tag
|
||||||
|
run: echo "WG-UI-VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v2
|
||||||
with:
|
with:
|
||||||
@@ -35,7 +38,7 @@ jobs:
|
|||||||
file: ./Dockerfile
|
file: ./Dockerfile
|
||||||
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
||||||
push: true
|
push: true
|
||||||
tags: embarkstudios/wireguard-ui:${GITHUB_REF#refs/tags/v}
|
tags: embarkstudios/wireguard-ui:${{ env.WG-UI-VERSION }}
|
||||||
|
|
||||||
- name: Clear
|
- name: Clear
|
||||||
if: always()
|
if: always()
|
||||||
@@ -47,22 +50,23 @@ jobs:
|
|||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Setup NodeJS
|
- name: Setup NodeJS
|
||||||
uses: actions/setup-node@v2
|
uses: actions/setup-node@v2
|
||||||
with:
|
with:
|
||||||
node-verison: 12
|
node-verison: 12
|
||||||
|
|
||||||
- name: npm install & build
|
|
||||||
run: |
|
|
||||||
make ui
|
|
||||||
|
|
||||||
- name: Setup Go
|
- name: Setup Go
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.16.x
|
go-version: 1.16.x
|
||||||
|
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Build UI
|
||||||
|
run: |
|
||||||
|
make ui
|
||||||
|
|
||||||
- name: Build wg-ui for Linux (AMD64)
|
- name: Build wg-ui for Linux (AMD64)
|
||||||
run: |
|
run: |
|
||||||
name=wg-ui
|
name=wg-ui
|
||||||
|
|||||||
+6
-1
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
|||||||
<!-- next-header -->
|
<!-- next-header -->
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [v1.2.1] - 2021-07-27
|
||||||
|
### Fixes
|
||||||
|
- [PR#139](https://github.com/EmbarkStudios/wg-ui/pull/139) Fix for versioned docker releases.
|
||||||
|
|
||||||
## [v1.2.0] - 2021-07-26
|
## [v1.2.0] - 2021-07-26
|
||||||
### Added
|
### Added
|
||||||
- [PR#113](https://github.com/EmbarkStudios/wg-ui/pull/113) Adding AWS ALB-specific header for username. Thanks to [@justnom](https://github.com/justnom)!
|
- [PR#113](https://github.com/EmbarkStudios/wg-ui/pull/113) Adding AWS ALB-specific header for username. Thanks to [@justnom](https://github.com/justnom)!
|
||||||
@@ -38,7 +42,8 @@ All notable changes to this project will be documented in this file.
|
|||||||
- This is the initial release of wireguard-ui
|
- This is the initial release of wireguard-ui
|
||||||
|
|
||||||
<!-- next-url -->
|
<!-- next-url -->
|
||||||
[Unreleased]: https://github.com/EmbarkStudios/wg-ui/compare/v1.2.0...HEAD
|
[Unreleased]: https://github.com/EmbarkStudios/wg-ui/compare/v1.2.1...HEAD
|
||||||
|
[v1.2.1]: https://github.com/EmbarkStudios/wg-ui/compare/v1.2.0...v1.2.1
|
||||||
[v1.2.0]: https://github.com/EmbarkStudios/wg-ui/compare/v1.1.0...v1.2.0
|
[v1.2.0]: https://github.com/EmbarkStudios/wg-ui/compare/v1.1.0...v1.2.0
|
||||||
[v1.1.0]: https://github.com/EmbarkStudios/wg-ui/compare/v1.0.0...v1.1.0
|
[v1.1.0]: https://github.com/EmbarkStudios/wg-ui/compare/v1.0.0...v1.1.0
|
||||||
[v1.0.0]: https://github.com/EmbarkStudios/wg-ui/releases/tag/v1.0.0
|
[v1.0.0]: https://github.com/EmbarkStudios/wg-ui/releases/tag/v1.0.0
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
[](CODE_OF_CONDUCT.md)
|
[](CODE_OF_CONDUCT.md)
|
||||||
|
|
||||||
A basic, self-contained management service for [WireGuard](https://wireguard.com) with a self-serve web UI.
|
A basic, self-contained management service for [WireGuard](https://wireguard.com) with a self-serve web UI.
|
||||||
Current stable release: [v1.1.0](https://github.com/EmbarkStudios/wg-ui/releases/tag/v1.1.0)
|
Current stable release: [v1.2.1](https://github.com/EmbarkStudios/wg-ui/releases/tag/v1.2.1)
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user