Skip to content

Commit

Permalink
8.0.28 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
stellirin committed Mar 24, 2024
1 parent 9805dd0 commit 6dc15ba
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 10 deletions.
28 changes: 20 additions & 8 deletions .github/workflows/container.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Create and publish a container image
name: Container Image

on:
push:
Expand All @@ -14,27 +14,39 @@ jobs:

steps:

- name: Checkout repository
uses: actions/checkout@v2
# https://github.com/actions/checkout
- name: Checkout
uses: actions/checkout@v4

# https://github.com/docker/setup-qemu-action
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

# https://github.com/docker/login-action
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
# https://github.com/docker/metadata-action
- name: Extract Metadata for Container Image
id: meta
uses: docker/metadata-action@v3
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- name: Build and push Docker images
uses: docker/build-push-action@v2
# https://github.com/docker/build-push-action
- name: Build and Push Container Image
uses: docker/build-push-action@v5
with:
context: .
push: true
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ARG IMAGE_TAG=17
FROM ghcr.io/bell-sw/liberica-openjre-debian:${IMAGE_TAG} as installer

ARG UNIFI_VER=8.0.24
ARG UNIFI_VER=8.0.28
ARG UNIFI_URL=https://dl.ui.com/unifi/${UNIFI_VER}/unifi_sysvinit_all.deb

ARG DEBIAN_FRONTEND=noninteractive
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ Build powerful home and enterprise networks with high-performance UniFi Switches
## Supported tags and respective `Dockerfile` links

- [`latest`](https://github.com/stellirin/unifi-network-application/blob/main/Dockerfile)
- [`8.0, 8.0.24`](https://github.com/stellirin/unifi-network-application/blob/v8.0.24/Dockerfile)
- [`8.0, 8.0.28`](https://github.com/stellirin/unifi-network-application/blob/v8.0.28/Dockerfile)

NOTE: `latest` may contain a beta release. If you wish for stability use a specific tag!

## Unsupported tags

- [`8.0.24`](https://github.com/stellirin/unifi-network-application/blob/v8.0.24/Dockerfile)
- [`8.0.7`](https://github.com/stellirin/unifi-network-application/blob/v8.0.7/Dockerfile)
- [`7.5, 7.5.187`](https://github.com/stellirin/unifi-network-application/blob/v7.5.187/Dockerfile)
- [`7.5.174`](https://github.com/stellirin/unifi-network-application/blob/v7.5.174/Dockerfile)
Expand Down

0 comments on commit 6dc15ba

Please sign in to comment.