Use cluster policy in pipeline tests (#1440) #731
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: Publish nightly release | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
create-build-artifacts: | |
uses: ./.github/workflows/create-build-artifacts.yml | |
secrets: inherit | |
create-release: | |
needs: "create-build-artifacts" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
path: packages/databricks-vscode | |
- run: ls -lR packages/databricks-vscode | |
- name: Update nightly release | |
uses: softprops/action-gh-release@v1 | |
with: | |
name: Nightly - ${{ github.ref_name }} | |
prerelease: true | |
tag_name: nightly-${{ github.ref_name }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
files: "packages/databricks-vscode/databricks*/*.vsix" |