Bump tj-actions/changed-files from 37 to 41 #43
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: Release | |
on: | |
push: | |
branches-ignore: [master] | |
pull_request: | |
types: [closed] | |
branches: [master] | |
workflow_dispatch: | |
env: | |
AWS_DEFAULT_REGION: ${{ secrets.AWS_DEFAULT_REGION }} | |
jobs: | |
check: | |
name: Check | |
runs-on: ubuntu-latest | |
outputs: | |
packages: ${{ steps.get-changed-packages.outputs.packages }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
- name: Get Changed Packages | |
id: get-changed-packages | |
run: | | |
export PACKAGES=$(git diff --name-only --diff-filter=d ${{ github.event.pull_request.base.sha || 'origin/master' }} ${{ github.sha }} ./*/ | cut -f1 -d/ | sort | uniq | jq -rcnR '[inputs]') | |
if ${{ github.event_name == 'workflow_dispatch' }}; then | |
export PACKAGES='["BlobViaEventGrid","EventHub","StorageQueue"]' | |
fi | |
echo "$PACKAGES" | |
echo "packages=$PACKAGES" >> $GITHUB_OUTPUT | |
build: | |
name: Build | |
if: needs.check.outputs.packages != '[]' | |
runs-on: ubuntu-latest | |
env: | |
AWS_SERVERLESS_BUCKET: ${{ secrets.AWS_PUBLIC_BUCKET }} | |
needs: [check] | |
strategy: | |
matrix: | |
package: ${{ fromJSON(needs.check.outputs.packages) }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
- name: install AWS cli | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y awscli | |
- name: Install functools | |
run: npm install -g azure-functions-core-tools@4 --unsafe-perm true | |
- name: Install dependencies | |
working-directory: ./${{ matrix.package }} | |
run: npm install | |
- name: Build | |
working-directory: ./${{ matrix.package }} | |
run: npm run build:production | |
- name: Package | |
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.merged == true }} | |
working-directory: ./${{ matrix.package }} | |
run: zip -r ${{ matrix.package }}.zip . -x ".*" | |
- name: Setup AWS credentials | |
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.merged == true }} | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.CS_DEVOPS_S3_AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.CS_DEVOPS_S3_AWS_SECRET_ACCESS_KEY }} | |
aws-region: ${{ env.AWS_DEFAULT_REGION }} | |
- name: Upload to S3 | |
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.merged == true }} | |
working-directory: ./${{ matrix.package }} | |
run: | | |
aws s3 cp \ | |
${{ matrix.package }}.zip \ | |
s3://${{ env.AWS_SERVERLESS_BUCKET }}/azure-functions-repo/${{ matrix.package }}.zip |