-
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.
1.0.0, change github workflow to one
- Loading branch information
1 parent
a098c8a
commit 786c9eb
Showing
4 changed files
with
35 additions
and
47 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,34 @@ | ||
name: Bundle, lint and publish configuration files to S3 bucket | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
environment: prod | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: oven-sh/setup-bun@v1 | ||
with: | ||
bun-version: "1.0.0" | ||
- name Lint the config files 🧹 | ||
run: bun lint | ||
- name: Build the config files 🍞 | ||
run: bun dle | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: oazo-configuration | ||
path: ${{ vars.SOURCE_CONFIGURATION_FILE_PATH }} | ||
if-no-files-found: error | ||
- name: Copy a file to AWS S3 bucket 🪣 | ||
uses: prewk/s3-cp-action@v2 | ||
with: | ||
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws_region: ${{ vars.AWS_DEFAULT_REGION }} | ||
source: ${{ vars.SOURCE_CONFIGURATION_FILE_PATH }} | ||
dest: "s3://${{ vars.AWS_BUCKET_NAME }}/${{ vars.DESTINATION_CONFIGURATION_FILE_PATH }}" | ||
flags: --acl public-read --recursive |
This file was deleted.
Oops, something went wrong.
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