-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update goreleaser manifest by replacing deprecated name_template (#184)
* update goreleaser manifest by replacing deprecated * Removing old archives section leftover * Replace brew.tap with brew.repository * Modify brew.repository to be an object instad of an array how doc incorrectly says * Updated [email protected] [email protected] and added editorconfig
- Loading branch information
Showing
6 changed files
with
102 additions
and
66 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
; https://editorconfig.org/ | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[{Makefile,go.mod,go.sum,*.go,.gitmodules}] | ||
indent_style = tab | ||
indent_size = 4 | ||
|
||
[*.md] | ||
indent_size = 4 | ||
trim_trailing_whitespace = false | ||
|
||
eclint_indent_style = unset | ||
|
||
[Dockerfile] | ||
indent_size = 4 | ||
|
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,23 +1,23 @@ | ||
name: Publish | ||
on: | ||
push: | ||
tags: ['*'] | ||
branches: ['bootstrapper'] | ||
tags: ["*"] | ||
branches: ["bootstrapper"] | ||
|
||
jobs: | ||
# The publish job will publish the bootstrap-templates directory to the correct S3 Bucket | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: jakejarvis/s3-sync-action@master | ||
with: | ||
args: --acl private --follow-symlinks | ||
env: | ||
# Credentials for this workflow are provisioned in the `terraform` directory | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
AWS_S3_BUCKET: truss-cli-global-config | ||
AWS_REGION: us-east-2 | ||
SOURCE_DIR: bootstrap-templates | ||
DEST_DIR: bootstrap-templates | ||
- uses: actions/checkout@master | ||
- uses: jakejarvis/s3-sync-action@master | ||
with: | ||
args: --acl private --follow-symlinks | ||
env: | ||
# Credentials for this workflow are provisioned in the `terraform` directory | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
AWS_S3_BUCKET: truss-cli-global-config | ||
AWS_REGION: us-east-2 | ||
SOURCE_DIR: bootstrap-templates | ||
DEST_DIR: bootstrap-templates |
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
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