Skip to content

Merge pull request #150 from Lixuhuilll/cancel-emailservice-circular-… #70

Merge pull request #150 from Lixuhuilll/cancel-emailservice-circular-…

Merge pull request #150 from Lixuhuilll/cancel-emailservice-circular-… #70

Workflow file for this run

name: Release jar and Docker image
on:
push:
branches:
- main
- dev
tags:
- 'v*'
pull_request:
branches: [ "main" ]
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }} # checkout the correct branch name
fetch-depth: 0 # fetch the whole repo history
- name: Git Version
id: version
uses: codacy/[email protected]
with:
release-branch: main
dev-branch: dev
major-identifier: "breaking:"
minor-identifier: "feature:"
- name: Get Tag Version
id: get_version
run: |
export TRUNCATED_GITHUB_SHA=$(echo ${{ github.sha }} | cut -c1-7);
echo "VERSION_TAG=${GITHUB_REF/refs\/heads\//}-${TRUNCATED_GITHUB_SHA}" >> $GITHUB_ENV
- uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 17
- name: Remove aliyun maven mirror
run: |
sed -i '/maven {/,+2d' build.gradle
- name: Set Java version
run: |
sed -i "s/^version.*$/version '${{ steps.version.outputs.version }}'/g" build.gradle
- name: Build jar
run: ./gradlew bootJar
- name: Upload jar
uses: actions/upload-artifact@v3
with:
name: jar
path: ./build/libs/*
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'main') }}
type=raw,value=dev,enable=${{ github.ref == format('refs/heads/{0}', 'dev') }}
type=raw,value={{branch}}-{{sha}}
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}