ci: automate approval process #13
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: 3. Approve Snapshot | ||
on: | ||
push: | ||
branches: | ||
- ci/approve-snapshot | ||
workflow_dispatch: | ||
env: | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: ldi-orchestrator | ||
jobs: | ||
approve-snapshot: | ||
#if: github.ref == "refs/heads/main" | ||
name: Approve Snapshot and Promote | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
- name: Set up JDK 18 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: zulu | ||
java-version: 18 | ||
- name: Define docker variables | ||
run: | | ||
Check failure on line 27 in .github/workflows/3.approve-snapshot.yml GitHub Actions / 3. Approve SnapshotInvalid workflow file
|
||
export VERSION=$(mvn help:evaluate -Dexpression="project.version" -q -DforceStdout) | ||
echo "version=$VERSION" >> $GITHUB_ENV | ||
echo "current version: ${{ env.version }}" | ||
if [[ "$env.version" == *"SNAPSHOT"* ]]; then | ||
echo "Dealing with a snapshot version. Current version: ${{ env.version }}" | ||
echo "New version: ${{ env.version //-SNAPSHOT//g }}" | ||
else | ||
echo "Already released. Current version: ${{ env.version }}" | ||
fi |