generated from databricks-industry-solutions/industry-solutions-blueprints
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
74 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
name: publish | ||
|
||
env: | ||
DB_PROFILES: ${{ secrets.DB_PROFILES }} | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
db_profile: | ||
type: string | ||
description: 'Databricks environment to publish HTML from' | ||
default: 'DEMO' | ||
db_path: | ||
type: string | ||
description: 'Repository path on databricks environment' | ||
required: true | ||
|
||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Checkout project | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: "3.9" | ||
|
||
- name: Install dependencies | ||
run: | | ||
pip install git+https://github.com/databricks-industry-solutions/industry-solutions-release | ||
- name: Package solution accelerator | ||
run: | | ||
import os | ||
import configparser | ||
import io | ||
from databricks.solutions import Accelerator | ||
config = configparser.ConfigParser() | ||
config.read_file(io.StringIO(os.environ['DB_PROFILES'])) | ||
if '${{ github.event.inputs.db_profile }}' not in config.sections(): | ||
raise Exception('Provided DB_PROFILE is not supported') | ||
config = config['${{ github.event.inputs.db_profile }}'] | ||
Accelerator( | ||
db_host=config['host'], | ||
db_token=config['token'], | ||
db_path='${{ github.event.inputs.db_path }}', | ||
db_name='${{ github.event.repository.name }}', | ||
).release() | ||
shell: python | ||
|
||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
path: 'site' | ||
|
||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v4 |