We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f80b14 commit f439e2bCopy full SHA for f439e2b
.github/workflows/deploy-docs.yml
@@ -14,7 +14,12 @@ jobs:
14
deploy-documentation:
15
runs-on: ubuntu-latest
16
steps:
17
- - uses: actions/checkout@v2
+ - name: Check out src from Git
18
+ uses: actions/checkout@v2
19
+ - name: Get history and tags for SCM versioning to work
20
+ run: |
21
+ git fetch --prune --unshallow
22
+ git fetch --depth=1 origin +refs/tags/*:refs/tags/*
23
- name: Login to Heroku Container Registry
24
run: echo ${{ secrets.HEROKU_API_KEY }} | docker login -u ${{ secrets.HEROKU_EMAIL }} --password-stdin registry.heroku.com
25
- name: Build Docker Image
0 commit comments