Skip to content

Commit d4cd1ef

Browse files
committed
v0.0.1
1 parent 57381bc commit d4cd1ef

2 files changed

Lines changed: 76 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: Nightly build
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*.*.*'
7+
workflow_dispatch:
8+
9+
concurrency:
10+
group: ${{ github.workflow }}
11+
cancel-in-progress: false
12+
13+
jobs:
14+
nightly:
15+
timeout-minutes: 30
16+
permissions:
17+
contents: write
18+
19+
name: Build nightly
20+
runs-on: ubuntu-latest
21+
22+
steps:
23+
- name: Read release tag
24+
run: |
25+
if [ "$GITHUB_EVENT_NAME" == 'workflow_dispatch' ]; then
26+
echo "RELEASE_TAG=master" >> "$GITHUB_ENV"
27+
else
28+
echo "RELEASE_TAG=${GITHUB_REF#refs/tags/}" >> "$GITHUB_ENV"
29+
fi
30+
31+
- uses: actions/checkout@v4
32+
33+
- name: Fetch tags
34+
run: |
35+
git fetch --tags -f
36+
37+
- uses: actions/setup-java@v4
38+
with:
39+
java-version: '21'
40+
distribution: 'oracle'
41+
42+
- name: Setup Gradle
43+
uses: gradle/actions/setup-gradle@v4
44+
45+
- name: Build with Gradle
46+
run: ./gradlew :migration-app:buildDistZip
47+
48+
- name: Release
49+
uses: ncipollo/release-action@v1
50+
with:
51+
allowUpdates: true
52+
prerelease: false
53+
draft: true
54+
artifacts: migration-app/build/dist/*.zip

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
6+
7+
## [Unreleased]
8+
9+
### Added
10+
11+
### Changed
12+
13+
### Removed
14+
15+
## [0.0.1] - 2025-09-15
16+
17+
### Added
18+
19+
- This CHANGELOG file
20+
21+
[unreleased]: https://github.com/quadient/migration-stack/compare/v0.0.1...HEAD
22+
[0.0.1]: https://github.com/quadient/migration-stack/releases/tag/v0.0.1

0 commit comments

Comments
 (0)