fix: do not throw error if race condition cannot be detected due to missing branch #18
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: Create GitHub releases | |
on: | |
pull_request: | |
types: | |
- closed | |
- labeled | |
jobs: | |
create-releases: | |
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'main' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Checkout release branch | |
run: | | |
git config --global user.name "Stainless Bot" | |
git config --global user.email "stainless-bot@users.noreply.github.com" | |
git checkout release | |
- name: Merge main into release branch | |
run: | | |
git pull origin release --rebase=false --ff-only | |
git merge --no-ff main | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
- name: Install dependencies | |
run: npm install | |
- name: Lint code | |
run: npm run lint | |
- name: Run tests | |
run: npm run test | |
- name: Compile | |
run: npm run compile | |
- name: Commit and push build directory | |
run: | | |
git add -f ./build | |
git diff --cached --exit-code || git commit -m "Build sources" | |
git push origin release | |
- name: Create github release | |
run: | | |
npm run cli -- github-release \ | |
--token=${{ secrets.GITHUB_TOKEN }} \ | |
--repo-url=${{ github.repository }} \ | |
--target-branch=release |