Skip to content

Commit

Permalink
chore: CI doesn't fail if the branch exists already
Browse files Browse the repository at this point in the history
  • Loading branch information
munen committed Jan 4, 2021
1 parent 083558c commit 6b988ba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
git remote add origin "https://${GH_TOKEN}@github.com/200ok-ch/org-parser.git" > /dev/null 2>&1
# Checkout the relevant branch. `lein release` does not
# work from a commit sha.
git checkout -b "$CIRCLE_BRANCH"
git checkout -B "$CIRCLE_BRANCH"
- run:
Expand All @@ -99,7 +99,7 @@ jobs:
# Bump to the next patch level with `-SNAPSHOT` postfix
lein change version leiningen.release/bump-version
lein vcs commit "chore: Bump to version %s [skip ci]"
git push --set-upstream origin setup-ci
git push --set-upstream origin "$CIRCLE_BRANCH"
workflows:
version: 2
Expand Down
2 changes: 1 addition & 1 deletion README.org
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#+html: <p>Tests: <a href="https://circleci.com/gh/200ok-ch/org-parser"><img src="https://circleci.com/gh/200ok-ch/org-parser.svg?style=svg"></a></p>

#+html: <a href="https://clojars.org/org-parser"><img src="https://img.shields.io/clojars/v/org-parser.svg" alt="Clojars Project" /></a><
#+html: <a href="https://clojars.org/org-parser"><img src="https://img.shields.io/clojars/v/org-parser.svg" alt="Clojars Project" /></a>

Community chat: #organice on IRC [[https://freenode.net/][Freenode]], or [[https://matrix.to/#/!DfVpGxoYxpbfAhuimY:matrix.org?via=matrix.org&via=ungleich.ch][#organice:matrix.org]] on Matrix

Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject org-parser "0.1.3-SNAPSHOT"
(defproject org-parser "0.1.4-SNAPSHOT"
:description "A parser for the Org mode markup language for Emacs"
:url "https://github.com/200ok-ch/org-parser"
:license {:name "GNU Affero General Public License v3.0"
Expand Down

0 comments on commit 6b988ba

Please sign in to comment.