release 7.70.45-3 #229
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
--- | |
name: release | |
run-name: release ${{ inputs.tag }} | |
on: | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: 'Tag to be released' | |
required: true | |
jobs: | |
build-federation-image: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GitHub Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ github.token }} | |
- name: Build and push image for federation | |
uses: docker/build-push-action@v5 | |
with: | |
push: true | |
context: . | |
file: images/svc-base/Dockerfile | |
tags: | | |
ghcr.io/${{ github.repository }}:${{ github.event.inputs.tag }}-svc-base | |
cache-from: type=gha,scope=federation | |
cache-to: type=gha,mode=max,scope=federation | |
build-image: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GitHub Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ github.token }} | |
- name: Build and push image | |
uses: docker/build-push-action@v5 | |
with: | |
push: true | |
context: . | |
tags: | | |
ghcr.io/${{ github.repository }}:${{ github.event.inputs.tag }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
github-release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create Release | |
uses: softprops/action-gh-release@v2 | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
with: | |
name: Release ${{ github.event.inputs.tag }} | |
tag_name: ${{ github.event.inputs.tag }} | |
generate_release_notes: true | |
target_commitish: ${{ github.sha }} |