Skip to content

Commit

Permalink
Merge pull request #320 from erikdarlingdata/drew-workflow
Browse files Browse the repository at this point in the history
adding in workflow for sql file
  • Loading branch information
erikdarlingdata authored Nov 21, 2023
2 parents 606d757 + 1800697 commit f408616
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build-sqlfile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Regenerate SQL Main File
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build:
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 DarlingData
cd Install-All
./Merge All.ps1
- name: Commit Updated File
run: |
git add DarlingData.sql
git commit -am "Automation: Building SQL File"
git push

0 comments on commit f408616

Please sign in to comment.