Skip to content

Fix/add post path variable #72

Fix/add post path variable

Fix/add post path variable #72

Workflow file for this run

name: Java CI with Maven and Auto Tagging
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
CI:
permissions:
contents: write
runs-on: ubuntu-latest
env:
AZURE_STORAGE_CONNECTION_STRING: ${{ secrets.AZURE_STORAGE_CONNECTION_STRING }}
AZURE_STORAGE_CONTAINER_NAME: ${{ secrets.AZURE_STORAGE_CONTAINER_NAME }}
AZURE_STORAGE_URL: ${{ secrets.AZURE_STORAGE_URL }}
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: 'maven'
- name: Create application.properties
run: |
echo "azure.storage.url=${AZURE_STORAGE_URL}" > src/main/resources/application.properties
echo "azure.storage.container.name=${AZURE_STORAGE_CONTAINER_NAME}" >> src/main/resources/application.properties
echo "azure.storage.connection.string=${AZURE_STORAGE_CONNECTION_STRING}" >> src/main/resources/application.properties
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Run tests
run: mvn -B test
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/github-tag-action@v5.6
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
default_bump: patch
initial_version: '1.0.0' # Sets the initial version if no tags exist
release_branches: main # Ensures tags are only pushed on the main branch
- name: Upload Artifact
id: upload-artifact
uses: actions/upload-artifact@v4
with:
name: application
path: target/*.jar
CD:
needs: [CI]
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
name: application
path: target/
- name: Deploy to Azure VM
uses: appleboy/scp-action@v0.1.7
with:
host: ${{ secrets.AZURE_VM_HOST }}
username: ${{ secrets.AZURE_VM_USERNAME }}
key: ${{ secrets.SSH_PRIVATE_KEY }}
port: ${{ secrets.AZURE_VM_PORT }}
source: "target/*.jar"
target: "/home/educai/java-app"
- name: Move Java App to Docker Container
uses: appleboy/ssh-action@v1.0.3
with:
host: ${{ secrets.AZURE_VM_HOST }}
username: ${{ secrets.AZURE_VM_USERNAME }}
key: ${{ secrets.SSH_PRIVATE_KEY }}
port: ${{ secrets.AZURE_VM_PORT }}
script: |
chmod +x /home/educai/script-backend.sh
sh /home/educai/script-backend.sh