forked from SasanLabs/VulnerableApp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* configuration updates for issue 353 * fixed mispelling * added instructions, examples, and info in readme.md, edited docker.yml to include VulnerableApp- in release name
- Loading branch information
1 parent
02e6ca8
commit e27a18e
Showing
3 changed files
with
47 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,9 +20,27 @@ jobs: | |
uses: actions/checkout@v2 | ||
with: | ||
java-version: 1.8 | ||
fetch-depth: 0 | ||
- | ||
name: Setup GitVersion action | ||
uses: gittools/actions/gitversion/[email protected] | ||
with: | ||
versionSpec: '5.x' | ||
- | ||
name: Execute GitVersion action | ||
id: gitversion | ||
uses: gittools/actions/gitversion/[email protected] | ||
- | ||
name: Publish release on GitHub | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
name: 'VulnerableApp-${{ steps.gitversion.outputs.semver }}' | ||
tag_name: '${{ steps.gitversion.outputs.semver }}' | ||
- | ||
name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- | ||
name: Build with Gradle and Push | ||
run: ./gradlew jib | ||
run: | | ||
./gradlew jib \ | ||
-Djib.to.tags='latest',$GITVERSION_SEMVER |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters