Merge pull request #360 from green-ecolution/feature/change-license #31
Workflow file for this run
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: Build and Push Docker Image Staging | |
"on": | |
workflow_dispatch: | |
inputs: | |
version: | |
description: "The release version" | |
required: true | |
push: | |
branches: | |
- release/* | |
- hotfix/* | |
jobs: | |
build_and_deploy_stage: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
packages: write | |
actions: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Extract branch name | |
shell: bash | |
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT | |
id: extract_branch | |
- name: Extract version from branch name (for release branches) | |
if: startsWith(steps.extract_branch.outputs.branch, 'release/') | |
run: | | |
BRANCH_NAME="${{ steps.extract_branch.outputs.branch }}" | |
VERSION=${BRANCH_NAME#release/} | |
echo "RELEASE_VERSION=$VERSION" >> $GITHUB_ENV | |
- name: Extract version from branch name (for hotfix branches) | |
if: startsWith(steps.extract_branch.outputs.branch, 'hotfix/') | |
run: | | |
BRANCH_NAME="${{ steps.extract_branch.outputs.branch }}" | |
VERSION=${BRANCH_NAME#hotfix/} | |
echo "RELEASE_VERSION=$VERSION" >> $GITHUB_ENV | |
- name: Extract version from input (for manual workflow dispatch) | |
if: github.event_name == 'workflow_dispatch' | |
run: | | |
echo "RELEASE_VERSION=${{ github.event.inputs.version }}" >> $GITHUB_ENV | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set lower case owner name | |
run: | | |
echo "REPO_LC=${REPO,,}" >>${GITHUB_ENV} | |
env: | |
REPO: "${{ github.repository }}" | |
- name: Set commit sha | |
run: | | |
echo "COMMIT_SHA=$(git rev-parse --short $GITHUB_SHA)" >> $GITHUB_ENV | |
- name: get build time | |
run: | | |
echo "BUILD_TIME=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >>${GITHUB_ENV} | |
- name: Build and push Version | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
build-args: | | |
APP_VERSION="${{env.RELEASE_VERSION}}-stage" | |
APP_GIT_COMMIT=${{env.COMMIT_SHA}} | |
APP_GIT_BRANCH=${{steps.extract_branch.outputs.branch}} | |
APP_BUILD_TIME=${{env.BUILD_TIME}} | |
APP_GIT_REPOSITORY=${{github.repository}} | |
file: ./.docker/Dockerfile.stage | |
platforms: linux/amd64 | |
push: true | |
tags: ghcr.io/${{ env.REPO_LC }}-stage:${{ env.RELEASE_VERSION }}-stage,ghcr.io/${{ env.REPO_LC }}-stage:${{ env.RELEASE_VERSION }}-preview, ghcr.io/${{ env.REPO_LC }}-stage:latest, ghcr.io/${{ env.REPO_LC }}-stage:${{ env.COMMIT_SHA }} | |
- name: Notify management repo to update submodules | |
uses: peter-evans/repository-dispatch@v3 | |
with: | |
token: ${{ secrets.GREEN_ECOLUTION_PAT }} | |
repository: green-ecolution/green-ecolution-management | |
event-type: "update-submodules-staging" | |
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ env.COMMIT_SHA }}", "version": "${{ env.RELEASE_VERSION }}", "from": "backend"}' | |
upload_api_docs_stage: | |
name: Upload API Docs Stage | |
needs: build_and_deploy_stage | |
env: | |
COMMIT_SHA: ${{ needs.build_and_deploy_stage.outputs.COMMIT_SHA }} | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: stable | |
- name: Install dependencies | |
run: make setup/ci | |
- name: Go generate | |
run: make generate | |
- name: Move swagger docs | |
run: mv ./docs/swagger.json ./docs/api-docs-stage.json | |
- name: Upload API Docs | |
uses: actions/upload-artifact@v4 | |
with: | |
name: api-docs-stage.json | |
path: ./docs/api-docs-stage.json |