Skip to content

Commit

Permalink
ci: add release workflow to 1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
jorenn92 committed Jan 8, 2024
1 parent 72f4717 commit a5a975f
Showing 1 changed file with 91 additions and 0 deletions.
91 changes: 91 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
name: "Release"

on:
workflow_dispatch:
inputs:
dry-run-semantic-release:
type: boolean
description: Dry-run semantic-release
default: false
with-docker-images:
type: boolean
description: Build and push docker images
default: true

jobs:
semantic-release:
if: github.triggering_actor == github.repository_owner
name: Tag and release latest version
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
if [ "${{ github.event.inputs.dry-run-semantic-release }}" == "true" ]; then
npx semantic-release --dry-run
else
npx semantic-release
fi
build-docker-image:
if: github.triggering_actor == github.repository_owner && github.event.inputs.with-docker-images == true
name: Build and push docker images
needs: semantic-release
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4

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

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/jorenn92/maintainerr
- name: Log in to GitHub Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: get-npm-version
id: package-version
uses: martinbeentjes/[email protected]

- name: Build & Push docker images
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: |
ghcr.io/jorenn92/maintainerr:${{ steps.package-version.outputs.current-version}}
ghcr.io/jorenn92/maintainerr:latest
jorenn92/maintainerr:${{ steps.package-version.outputs.current-version}}
jorenn92/maintainerr:latest
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit a5a975f

Please sign in to comment.