Skip to content

Update .gitignore

Update .gitignore #23

Workflow file for this run

name: Deploy JAR Pipeline
on:
workflow_dispatch:
jobs:
Initial-Set-Up:
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-west-3
- name: Create Secrets
uses: 1arp/[email protected]
with:
path: 'src/main/resources'
is AbsolutePath: false
file: 'application-secret.properties'
content: |
riot.api.key=${{ secrets.RIOT_API_KEY }}
disc.api.key=${{ secrets.DISCORD_API_KEY }}

Check failure on line 25 in .github/workflows/deploy-jar.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy-jar.yml

Invalid workflow file

You have an error in your yaml syntax on line 25
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
cache: maven
- name: Test with Maven
run: mvn clean test
- name: Build with Maven
run: mvn clean package
Upload-Push-JAR:
runs-on: ubuntu-latest
steps:
- name: Test
run: ls -la