v0.3.51 #41
Workflow file for this run
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: Deploy backend to production | |
on: | |
release: | |
types: [released] | |
jobs: | |
reset-release-branch: | |
name: Update release branch | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # fetch history for all branches and tags | |
token: ${{ secrets.GH_TOKEN }} # use PAT with permissions to push to master | |
ref: release | |
- name: Perform reset | |
run: | | |
git reset --hard ${{ github.ref }} | |
git push --force origin release | |
production-deploy: | |
name: Deploy to Heroku | |
runs-on: ubuntu-latest | |
needs: reset-release-branch | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # fetch history for all branches and tags | |
ref: release | |
- name: Install Heroku CLI | |
run: curl https://cli-assets.heroku.com/install.sh | sh | |
- name: Install builds plugin | |
run: heroku plugins:install heroku-builds | |
- name: Build app into tarball | |
run: python setup.py sdist --formats=gztar | |
- name: Create Heroku Build | |
run: heroku builds:create -a dandi-api --source-tar=dist/$(python setup.py --fullname).tar.gz | |
env: | |
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }} | |
HEROKU_EMAIL: ${{ secrets.HEROKU_EMAIL }} |