Skip to content

Commit

Permalink
🔧 pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
MiguelProgrammer committed Sep 23, 2024
1 parent 783abbf commit 67186a1
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 84 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: pipeline
on:
push:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Package
run: mvn package

publish:
runs-on: ubuntu-latest
needs: build
permissions:
contents: read
packages: write
steps:
- uses: action/checkout@v3
- uses: action/setup-java@v3
with:
java-version: '17'
distribuition: 'adopt'
package: '*.jar'
- name: Publish package
run: mvn --batch-mode deploy
env:
GITHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
66 changes: 9 additions & 57 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 0 additions & 27 deletions aws/key-par-food.pem

This file was deleted.

0 comments on commit 67186a1

Please sign in to comment.