Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

Bump requests from 2.8.1 to 2.31.0 #35

Bump requests from 2.8.1 to 2.31.0

Bump requests from 2.8.1 to 2.31.0 #35

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Backend Java CI with Maven
on: [push, pull_request]
env:
IMAGE_NAME: ikcap/disk_backend
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: cd portal && mvn -B package --file pom.xml
env:
GITHUB_USERNAME: ${{ secrets.GITHUB_USERNAME }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: cd portal && mkdir staging && cp server/target/*.war staging
- uses: actions/upload-artifact@v2
with:
name: Package
path: portal/staging