Managed by Terraform: - .github/workflows/validate.yaml #37
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
# WARNING: This file is managed by: https://github.com/massdriver-cloud/bundle-github-repo-manager | |
# DO NOT EDIT HERE. It will be over written. | |
name: Publish to Massdriver (beta) | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish_to_massdriver: | |
name: Build and publish | |
runs-on: ubuntu-latest | |
env: | |
MASSDRIVER_API_KEY: ${{ secrets.MASSDRIVER_BETA_RELEASE_CHANNEL_API_KEY }} | |
MASSDRIVER_ORG_ID: ${{ secrets.MASSDRIVER_BETA_RELEASE_CHANNEL_ORGANIZATION_ID }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Massdriver CLI | |
uses: massdriver-cloud/actions@v4 | |
- name: Publish Bundle | |
uses: massdriver-cloud/actions/bundle_publish@v4 |