Skip to content

Commit

Permalink
add checkout step
Browse files Browse the repository at this point in the history
  • Loading branch information
yaminidhamija committed Apr 11, 2024
1 parent 7bef339 commit 4fe4282
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release-finish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,16 @@ jobs:
id: commit
uses: prompt/actions-commit-hash@v2

- name: Check out code
uses: actions/checkout@v2

- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '17'
cache: maven

- name: Check out code
- name: Build
shell: bash
run: |
mvn clean install -DskipTests
Expand Down
44 changes: 44 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
**/.DS_Store
**/target/
**/*.iml
**/*.idea
**/.project
**/.classpath
**/.settings/
**/pom.xml.bak
**/.aws-sam
samconfig.toml


# IntelliJ
.idea
*.ipr
*.iml
*.iws

# NetBeans
nb-configuration.xml

# Visual Studio Code
.vscode
.factorypath

# OSX
.DS_Store

# Vim
*.swp
*.swo

# patch
*.orig
*.rej

# Local environment
.env

# Plugin directory
/.quarkus/cli/plugins/

# quarkus jar files used in building docker imate
cdk/*.jar

0 comments on commit 4fe4282

Please sign in to comment.