1.0.0, change github workflow to one #1
Workflow file for this run
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
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 |