Skip to content

Commit

Permalink
Merge branch 'main' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
erikdarlingdata authored Nov 30, 2023
2 parents c50c3f5 + 444e864 commit 2caaa11
Show file tree
Hide file tree
Showing 5 changed files with 180 additions and 120 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build-sqlfile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
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 '[email protected]'
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
Loading

0 comments on commit 2caaa11

Please sign in to comment.