Skip to content

removed removeLast() function that conflicts with new ArrayList API i… #8

removed removeLast() function that conflicts with new ArrayList API i…

removed removeLast() function that conflicts with new ArrayList API i… #8

Workflow file for this run

# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path
name: Maven Package
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
- name: Publish to GitHub Packages using Apache Maven
run: mvn --batch-mode deploy -P publish-on-github-packages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}