Skip to content

Merge #develop into main #30

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Apr 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
110 changes: 110 additions & 0 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
name: Generate a Pre-Release

on:
workflow_dispatch:
push:
branches:
- develop

permissions:
contents: write
pull-requests: write
packages: write

jobs:
prepare-a-release:
runs-on: ubuntu-latest
outputs:
new_version: ${{ steps.tag_version.outputs.new_version }}
new_tag: ${{ steps.tag_version.outputs.new_tag }}
current_date: ${{ steps.current_date.outputs.current_date }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: '0'

- name: Configure Git user
run: |
git config user.email "[email protected]"
git config user.name "Timothy Mugo Gachengo"

- name: Get Current Date And Time
id: current_date
run: echo "current_date=$(date +'%Y%m%d')" >> $GITHUB_OUTPUT

- name: Generate Tag
id: tag_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
tag_prefix: 'v'
pre_release_branches: 'develop'
append_to_pre_release_tag: 'snapshot-${{steps.current_date.outputs.current_date}}'
dry_run: 'true'

build-and-push-docker-image:
needs: prepare-a-release
runs-on: ubuntu-latest
outputs:
new_version: ${{ needs.prepare-a-release.outputs.new_version }}
new_tag: ${{ needs.prepare-a-release.outputs.new_tag }}
current_date: ${{ needs.prepare-a-release.outputs.current_date }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: linux/amd64,linux/arm64

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

- name: Login to Docker Registry
uses: docker/login-action@v3
with:
registry: ${{ vars.DOCKER_REGISTRY }}
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
cache-from: type=gha, scope=data-viz-admin
cache-to: type=gha, scope=data-viz-admin
context: .
push: true
build-args: |
VERSION=${{ needs.prepare-a-release.outputs.new_version }}
TAG=${{ needs.prepare-a-release.outputs.new_tag }}
tags: |
${{ vars.DOCKER_REGISTRY }}/data-viz-admin:v${{ needs.prepare-a-release.outputs.new_version }}

release-on-github:
needs: build-and-push-docker-image
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'corretto'
cache: 'maven'

- name: Create Release
id: create_release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ needs.build-and-push-docker-image.outputs.new_tag }}
generate_release_notes: true
draft: false
prerelease: true
make_latest: 'true'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading