Skip to content
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.

Commit

Permalink
Release 1.2.1 (#139)
Browse files Browse the repository at this point in the history
* Fix release tag to work for dockerhub builds

* Bumping version to 1.2.1
  • Loading branch information
suom1 authored Jul 27, 2021
1 parent e3a823d commit 10eef7d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 12 deletions.
24 changes: 14 additions & 10 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Set up QEMU
uses: docker/setup-qemu-action@v1

Expand All @@ -28,14 +25,20 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }}
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
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64,linux/arm/v7
push: true
tags: embarkstudios/wireguard-ui:${GITHUB_REF#refs/tags/v}
tags: embarkstudios/wireguard-ui:${{ env.WG-UI-VERSION }}

- name: Clear
if: always()
Expand All @@ -47,22 +50,23 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Setup NodeJS
uses: actions/setup-node@v2
with:
node-verison: 12

- name: npm install & build
run: |
make ui
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.16.x

- name: Checkout
uses: actions/checkout@v2

- name: Build UI
run: |
make ui
- name: Build wg-ui for Linux (AMD64)
run: |
name=wg-ui
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
<!-- next-header -->
## [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
### 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)!
Expand Down Expand Up @@ -38,7 +42,8 @@ All notable changes to this project will be documented in this file.
- This is the initial release of wireguard-ui

<!-- 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.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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![Contributor Covenant](https://img.shields.io/badge/contributor%20covenant-v1.4%20adopted-ff69b4.svg)](CODE_OF_CONDUCT.md)

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

Expand Down

0 comments on commit 10eef7d

Please sign in to comment.