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 0d7e24c commit b46403bCopy full SHA for b46403b
.github/workflows/deploy.yml
@@ -26,6 +26,7 @@ jobs:
26
- uses: actions/checkout@v2
27
with:
28
persist-credentials: false
29
+ fetch-depth: 0
30
- name: Set up Node and Build for Deploy
31
uses: actions/setup-node@v3
32
@@ -45,6 +46,8 @@ jobs:
45
46
npm install -g @semantic-release/commit-analyzer@^9.0.0
47
npm install -g @semantic-release/release-notes-generator@^10.0.0
48
npm install
49
+ - name: Pull latest changes from main # avoid "local behind remote" issues
50
+ run: git pull origin main
51
- name: Publish to Git Releases and Tags
52
if: ${{ github.event.workflow_run.conclusion == 'success' }}
53
env:
0 commit comments