mirror of
https://github.com/outbackdingo/docker-registry-ui.git
synced 2026-04-08 02:11:19 +00:00
76 lines
2.7 KiB
YAML
76 lines
2.7 KiB
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
tags: ['*']
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Install dependencies
|
|
run: npm install
|
|
- name: Run tests
|
|
run: npm test
|
|
- name: Build the interface
|
|
run: npm run build
|
|
- name: Major tag
|
|
id: major-tag
|
|
run: echo "::set-output name=tag::$(git describe --tags | grep -o '^[0-9]*')"
|
|
- name: Minor tag
|
|
id: minor-tag
|
|
run: echo "::set-output name=tag::$(git describe --tags | grep -o '^[0-9]*\.[0-9]*')"
|
|
- name: Patch tag
|
|
id: patch-tag
|
|
run: echo "::set-output name=tag::$(git describe --tags | grep -o '^[0-9]*\.[0-9]*\.[0-9]*')"
|
|
- name: Download kokai
|
|
run: curl -sSL https://github.com/Joxit/kokai/releases/download/$(curl -sSL https://api.github.com/repos/Joxit/kokai/releases/latest | jq -r ".tag_name")/kokai-linux-x86_64 > kokai
|
|
- name: Create Release Note
|
|
run: chmod +x kokai && ./kokai release --ref ${{ github.ref }} --tag-from-ref . > RELEASE_NOTE.md
|
|
- name: Create Release
|
|
id: create_release
|
|
uses: actions/create-release@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
tag_name: ${{ github.ref }}
|
|
release_name: Release ${{ github.ref }}
|
|
body_path: RELEASE_NOTE.md
|
|
draft: false
|
|
prerelease: false
|
|
- 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: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
- name: Build and push Latest Version
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
context: .
|
|
file: ./Dockerfile
|
|
platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x
|
|
push: true
|
|
tags: |
|
|
joxit/docker-registry-ui:latest
|
|
joxit/docker-registry-ui:${{steps.major-tag.outputs.tag}}
|
|
joxit/docker-registry-ui:${{steps.minor-tag.outputs.tag}}
|
|
joxit/docker-registry-ui:${{steps.patch-tag.outputs.tag}}
|
|
- name: Build and push Latest Debian Version
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
context: .
|
|
file: ./debian.dockerfile
|
|
platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x
|
|
push: true
|
|
tags: |
|
|
joxit/docker-registry-ui:debian
|
|
joxit/docker-registry-ui:${{steps.major-tag.outputs.tag}}-debian
|
|
joxit/docker-registry-ui:${{steps.minor-tag.outputs.tag}}-debian
|
|
joxit/docker-registry-ui:${{steps.patch-tag.outputs.tag}}-debian |