-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Archive 8.4 & 8.5 and adjust associated GH workflows, README.md versi…
…ons/tags cleanup
- Loading branch information
1 parent
6e168fc
commit 04ad9a7
Showing
69 changed files
with
122 additions
and
3 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
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.
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.
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.
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.
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.
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.
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.
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.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
name: Build Official | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- 8.5/official/** | ||
- .github/workflows/build-8.5-official.yml | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v4 | ||
- | ||
name: Set up dynamic build ARGs | ||
id: getargs | ||
run: echo "version=$(cat ./8.5/official/VERSION)" >> $GITHUB_OUTPUT | ||
- | ||
name: Set up Docker metadata for Alpine | ||
id: meta-alpine | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: | | ||
${{ github.repository }} | ||
ghcr.io/${{ github.repository }} | ||
tags: | | ||
type=raw,8.5-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@v5 | ||
with: | ||
images: | | ||
${{ github.repository }} | ||
ghcr.io/${{ github.repository }} | ||
tags: | | ||
type=raw,8.5-debian | ||
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@v5 | ||
with: | ||
images: | | ||
${{ github.repository }} | ||
ghcr.io/${{ github.repository }} | ||
tags: | | ||
type=raw,8.5 | ||
type=raw,8.5-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@v3 | ||
- | ||
name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- | ||
name: Login to DockerHub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- | ||
name: Login to GHCR | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- | ||
name: Build and push Alpine Docker image | ||
uses: docker/build-push-action@v6 | ||
with: | ||
context: ./8.5/official | ||
file: ./8.5/official/Dockerfile.alpine | ||
platforms: linux/amd64,linux/arm64 | ||
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@v6 | ||
with: | ||
context: ./8.5/official | ||
file: ./8.5/official/Dockerfile.debian | ||
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@v6 | ||
with: | ||
context: ./8.5/official | ||
file: ./8.5/official/Dockerfile | ||
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 }} |