Skip to content

Create pre-release

Create pre-release #10

name: Create pre-release
on:
workflow_dispatch:
inputs:
bump:
type: choice
options:
- _
- patch
- minor
- major
required: false
prerelease:
type: choice
options:
- _
- withBuildNumber
- withoutBuildNumber
required: false
prelabel:
type: choice
options:
- _
- alpha
- beta
- rc
- snapshot
required: false
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
if: ${{ github.actor != 'dependabot'}}
runs-on: ubuntu-latest
outputs:
release: ${{ steps.prerelease.outputs.release }}
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 16.x
cache: 'npm'
- run: npm install
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build Docker Image Locally
uses: docker/build-push-action@master
with:
context: .
file: ./Dockerfile
load: true
tags: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:main-enterprise
- name: Inspect the Docker Image
run: |
docker image inspect ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:main-enterprise
- run: echo "${{ github.ref }}"
- name: Tag a final release
id: prerelease
uses: actionsdesk/[email protected]
with:
bump: ${{ inputs.bump }}
prerelease: ${{ inputs.prerelease }}
prelabel: ${{ inputs.prelabel }}
commitish: ${{ github.ref }}
- name: Push Docker Image
if: ${{ success() }}
uses: docker/build-push-action@master
with:
context: .
file: ./Dockerfile
push: true
tags: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.prerelease.outputs.release }}
platforms: linux/amd64,linux/arm64
provenance: false
sbom: false