Skip to content

Commit

Permalink
v6.3.51 beta, v6.2.26 official
Browse files Browse the repository at this point in the history
  • Loading branch information
goofball222 committed Jun 24, 2021
1 parent 0c47738 commit 33b8905
Show file tree
Hide file tree
Showing 20 changed files with 138 additions and 9 deletions.
124 changes: 124 additions & 0 deletions .github/workflows/build-6.3-beta.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
name: Build 6.3 Beta

on:
push:
branches:
- main
paths:
- 6.3/beta/**
- .github/workflows/build-6.3-beta.yml

jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Set up dynamic build ARGs
id: getargs
run: echo "::set-output name=version::$(cat ./6.3/beta/VERSION)"
-
name: Set up Docker metadata for Alpine
id: meta-alpine
uses: docker/metadata-action@v3
with:
images: |
${{ github.repository }}
ghcr.io/${{ github.repository }}
tags: |
type=raw,latest-alpine-beta
type=raw,6.3-alpine-beta
type=raw,6.3-alpine
labels: |
org.opencontainers.image.vendor=The Goofball - [email protected]
org.opencontainers.image.title=UniFi Controller
org.opencontainers.image.description=UniFi Controller
org.opencontainers.image.version=${{ steps.getargs.outputs.version }}-Alpine
-
name: Set up Docker metadata for Debian
id: meta-debian
uses: docker/metadata-action@v3
with:
images: |
${{ github.repository }}
ghcr.io/${{ github.repository }}
tags: |
type=raw,latest-beta
type=raw,6.3-beta
type=raw,6.3
labels: |
org.opencontainers.image.vendor=The Goofball - [email protected]
org.opencontainers.image.title=UniFi Controller
org.opencontainers.image.description=UniFi Controller
org.opencontainers.image.version=${{ steps.getargs.outputs.version }}-Debian
-
name: Set up Docker metadata for Ubuntu
id: meta-ubuntu
uses: docker/metadata-action@v3
with:
images: |
${{ github.repository }}
ghcr.io/${{ github.repository }}
tags: |
type=raw,latest-ubuntu-beta
type=raw,6.3-ubuntu-beta
type=raw,6.3-ubuntu
labels: |
org.opencontainers.image.vendor=The Goofball - [email protected]
org.opencontainers.image.title=UniFi Controller
org.opencontainers.image.description=UniFi Controller
org.opencontainers.image.version=${{ steps.getargs.outputs.version }}-Ubuntu
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ github.repository_owner }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Login to GHCR
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push Alpine Docker image
uses: docker/build-push-action@v2
with:
context: ./6.3/beta
file: ./6.3/beta/Dockerfile.alpine
platforms: linux/amd64,linux/arm64,linux/arm/v7
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta-alpine.outputs.tags }}
labels: ${{ steps.meta-alpine.outputs.labels }}
build-args: VERSION=${{ steps.getargs.outputs.version }}
-
name: Build and push Debian Docker image
uses: docker/build-push-action@v2
with:
context: ./6.3/beta
file: ./6.3/beta/Dockerfile
platforms: linux/amd64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta-debian.outputs.tags }}
labels: ${{ steps.meta-debian.outputs.labels }}
build-args: VERSION=${{ steps.getargs.outputs.version }}
-
name: Build and push Ubuntu Docker image
uses: docker/build-push-action@v2
with:
context: ./6.3/beta
file: ./6.3/beta/Dockerfile.ubuntu
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta-ubuntu.outputs.tags }}
labels: ${{ steps.meta-ubuntu.outputs.labels }}
build-args: VERSION=${{ steps.getargs.outputs.version }}
1 change: 0 additions & 1 deletion 6.2/beta/VERSION

This file was deleted.

2 changes: 1 addition & 1 deletion 6.2/official/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.2.25
6.2.26
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions 6.3/beta/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
6.3.51-05a66381e3
File renamed without changes.
File renamed without changes.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
* **2021-06-24:**
* Create 6.3/beta, v[6.3.51](https://community.ui.com/releases/UniFi-Network-Application-6-3-51/af39cc49-d743-462f-978a-5707d217bb4f)
* Update 6.2/official to v[6.2.26](https://community.ui.com/releases/UniFi-Network-Application-6-2-26/0dfcbc77-8a4f-4e20-bb93-07bbb0237e3a)
* Tag 6.2.26 release
---
* **2021-06-17:**
* Update GitHub actions
* Update README.md
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
## Docker tags:
| Tag | UniFi Version | Description | Release Date |
| --- | :---: | --- | :---: |
| [6.2, 6.2-alpine, 6.2-ubuntu, latest, latest-alpine, latest-ubuntu](https://github.com/goofball222/unifi/blob/main/6.2/official/Dockerfile) | [6.2.25](https://community.ui.com/releases/UniFi-Network-Application-6-2-25/d9cb0897-3ef4-4dda-a5d6-c07530ff8a86) | UniFi official release | 2021-05-14 |
| [6.2-beta, 6.2-alpine-beta, 6.2-ubuntu-beta](https://github.com/goofball222/unifi/blob/main/6.2/beta/Dockerfile) | [6.2.26](https://community.ui.com/releases/UniFi-Network-Application-6-2-26/4ce235f8-c479-477e-b71a-e66d5294c5a9) | UniFi beta release | 2021-05-31 |
| [6.1, 6.1-alpine, 6.1-ubuntu](https://github.com/goofball222/unifi/blob/main/6.1/official/Dockerfile) | [6.1.71](https://community.ui.com/releases/UniFi-Network-Controller-6-1-71/0cffd3ed-7429-4529-9a20-9fead78ebf66) | UniFi official release | 2021-03-25 |
| [6.0, 6.0-alpine, 6.0-ubuntu](https://github.com/goofball222/unifi/blob/main/6.0/official/Dockerfile) | [6.0.45](https://community.ui.com/releases/UniFi-Network-Controller-6-0-45/8d3b98e1-b9d4-4ab3-b8da-721dbe9ab842) | UniFi official release | 2021-01-26 |
| [5.14, 5.14-alpine, 5.14-ubuntu](https://github.com/goofball222/unifi/blob/main/5.14/official/Dockerfile) | [5.14.23](https://community.ui.com/releases/UniFi-Network-Controller-5-14-23/daf90732-30ad-48ee-81e7-1dcb374eba2a) | UniFi official release | 2020-08-25 |
| [6.2.25](https://github.com/goofball222/unifi/releases/tag/6.2.25) | [6.2.25](https://community.ui.com/releases/UniFi-Network-Application-6-2-25/d9cb0897-3ef4-4dda-a5d6-c07530ff8a86) | Static official release tag/image | 2021-05-14 |
| [6.2, 6.2-alpine, 6.2-ubuntu, latest, latest-alpine, latest-ubuntu](https://github.com/goofball222/unifi/blob/main/6.2/official/Dockerfile) | [6.2.26](https://community.ui.com/releases/UniFi-Network-Application-6-2-26/0dfcbc77-8a4f-4e20-bb93-07bbb0237e3a) | UniFi Network Application official release | 2021-06-21 |
| [6.3, 6.3-alpine, 6.3-ubuntu, 6.3-beta, 6.3-alpine-beta, 6.3-ubuntu-beta](https://github.com/goofball222/unifi/blob/main/6.3/beta/Dockerfile) | [6.3.51](https://community.ui.com/releases/UniFi-Network-Application-6-3-51/af39cc49-d743-462f-978a-5707d217bb4f) | UniFi Network Application beta release | 2021-06-24 |
| [6.1, 6.1-alpine, 6.1-ubuntu](https://github.com/goofball222/unifi/blob/main/6.1/official/Dockerfile) | [6.1.71](https://community.ui.com/releases/UniFi-Network-Controller-6-1-71/0cffd3ed-7429-4529-9a20-9fead78ebf66) | UniFi Network Application official release | 2021-03-25 |
| [6.0, 6.0-alpine, 6.0-ubuntu](https://github.com/goofball222/unifi/blob/main/6.0/official/Dockerfile) | [6.0.45](https://community.ui.com/releases/UniFi-Network-Controller-6-0-45/8d3b98e1-b9d4-4ab3-b8da-721dbe9ab842) | UniFi Network Application official release | 2021-01-26 |
| [5.14, 5.14-alpine, 5.14-ubuntu](https://github.com/goofball222/unifi/blob/main/5.14/official/Dockerfile) | [5.14.23](https://community.ui.com/releases/UniFi-Network-Controller-5-14-23/daf90732-30ad-48ee-81e7-1dcb374eba2a) | UniFi Network Application official release | 2020-08-25 |
| [6.2.26](https://github.com/goofball222/unifi/releases/tag/6.2.26) | [6.2.26](https://community.ui.com/releases/UniFi-Network-Application-6-2-25/d9cb0897-3ef4-4dda-a5d6-c07530ff8a86) | Static official release tag/image | 2021-06-24 |
| [6.1.71](https://github.com/goofball222/unifi/releases/tag/6.1.71) | [6.1.71](https://community.ui.com/releases/UniFi-Network-Controller-6-1-71/0cffd3ed-7429-4529-9a20-9fead78ebf66) | Static official release tag/image | 2021-03-25 |
| [6.0.45](https://github.com/goofball222/unifi/releases/tag/6.0.45) | [6.0.45](https://community.ui.com/releases/UniFi-Network-Controller-6-0-45/8d3b98e1-b9d4-4ab3-b8da-721dbe9ab842) | Static official release tag/image | 2021-01-26 |
| [5.14.23](https://github.com/goofball222/unifi/releases/tag/5.14.23) | [5.14.23](https://community.ui.com/releases/UniFi-Network-Controller-5-14-23/daf90732-30ad-48ee-81e7-1dcb374eba2a) | Static official release tag/image | 2020-08-25 |
Expand Down
2 changes: 1 addition & 1 deletion release/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.2.25
6.2.26

0 comments on commit 33b8905

Please sign in to comment.