Add IP address of server in cors #96
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 on Push | |
on: | |
push: | |
branches: | |
- '*' | |
workflow_call: | |
jobs: | |
build-spring: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Setup JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: "17" | |
distribution: temurin | |
- name: Move files from Spring root folder to working directory | |
run: mv $GITHUB_WORKSPACE/Tithe-Spring/* $GITHUB_WORKSPACE/ | |
- name: Make gradlew executable | |
run: chmod +x ./gradlew | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1 | |
with: | |
arguments: build | |
build-vue: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Setup Node.js 16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "16" | |
- name: Move files from Vue root folder to working directory | |
run: mv $GITHUB_WORKSPACE/Tithe-Vue/* $GITHUB_WORKSPACE/ | |
- name: Install dependencies | |
run: npm install | |
- name: Build with Vite | |
run: npm run build |