Merge pull request #348 from erikdarlingdata/dev #29
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: Regenerate SQL Main File | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
jobs: | |
build-sql-file: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Checkout Code | |
run: | | |
git config --global user.name 'Darling Data' | |
git config --global user.email 'erik@erikdarling.com' | |
git checkout | |
- name: Compile SQL File | |
shell: pwsh | |
run: | | |
cd Install-All | |
./Merge-All.ps1 | |
- name: Commit Updated File | |
run: | | |
git add ./Install-All/DarlingData.sql | |
git commit -am "Automation: Building SQL File" | |
git push |