-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update sbt-scalatools-common to v0.5.7 (#81)
* bump sbt-scalatools-common version * try v0.5.6 - sbt-scalatools-common * Update to v0.5.7 * add AWS auth * disable AWS Cache - Upload
- Loading branch information
1 parent
276cc01
commit 2c4367b
Showing
5 changed files
with
31 additions
and
21 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
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ on: | |
push: | ||
branches-ignore: | ||
- main | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
|
@@ -16,6 +16,7 @@ jobs: | |
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Cache - GHA | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -36,6 +37,14 @@ jobs: | |
- name: Clean and test | ||
run: sbt clean test | ||
|
||
- name: Cache - Upload | ||
if: github.actor != 'dependabot[bot]' | ||
run: aws s3 sync ~/.cache/coursier/v1/https/ s3://${{ secrets.ARTIFACTS_CACHE_BUCKET }} --sse AES256 --follow-symlinks --no-progress | ||
# - name: AWS - Configure | ||
# uses: aws-actions/configure-aws-credentials@v1 | ||
# if: github.actor != 'dependabot[bot]' | ||
# with: | ||
# aws-access-key-id: ${{ secrets.ARTIFACTS_ACCESS_KEY_ID }} | ||
# aws-secret-access-key: ${{ secrets.ARTIFACTS_SECRET_ACCESS_KEY }} | ||
# aws-region: eu-west-1 | ||
|
||
# - name: Cache - Upload | ||
# if: github.actor != 'dependabot[bot]' | ||
# run: aws s3 sync ~/.cache/coursier/v1/https/ s3://${{ secrets.ARTIFACTS_CACHE_BUCKET }} --sse AES256 --follow-symlinks --no-progress |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: Deploy | ||
|
||
on: | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
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 |
---|---|---|
|
@@ -14,4 +14,4 @@ jobs: | |
uses: scala-steward-org/scala-steward-action@v2 | ||
with: | ||
github-token: ${{ secrets.BOT_GITHUB_TOKEN }} | ||
author-email: [email protected] | ||
author-email: ${{ secrets.BOT_GITHUB_EMAIL }} |
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
resolvers += "HAT Library Artifacts Releases" at "https://s3-eu-west-1.amazonaws.com/library-artifacts-releases.hubofallthings.com" | ||
addSbtPlugin("io.dataswift" % "sbt-scalatools-common" % "0.5.0") | ||
|
||
addSbtPlugin("io.dataswift" % "sbt-scalatools-common" % "0.5.7") |