Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/issue_release.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
title: Release build failed for tag ${{ env.TAG_NAME }}
title: Release build failed for tag {{ env.TAG_NAME }}
---
Workflow Run: {{ env.REPO_URL }}/actions/runs/{{ env.RUN_ID }}
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
test_coatjava:
needs: [ build ]
strategy:
fail-fast: false
fail-fast: true
matrix:
runner:
- ubuntu-latest
Expand Down
10 changes: 5 additions & 5 deletions docs/dev_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Deploying a new version requires a new version number, named `$VERSION` in this
document.
- the release build will have version `$VERSION`
- the git repository will have version `${VERSION}-SNAPSHOT`
- the `git` repository will have version `${VERSION}-SNAPSHOT`
- note that this is **not** conventional, since typically `-SNAPSHOT` is used for _upcoming_ releases

### General Procedure
Expand All @@ -14,12 +14,12 @@ document.
1. make sure you have no local changes (`git status`)
1. `./deploy-coatjava.sh -v $VERSION`
1. `git push` -> open PR -> review PR -> merge
1. make git tag and release
1. make `git` tag and release

> [!NOTE]
> Should `deploy-coatjava.sh` fail midway, your repository may be left in a transient state; here's how to revert:
> 1. `git switch -` to switch back to `development` branch
> 1. `libexec/version-bump.sh $ORIGINAL_VERSION` and be sure to include the `-SNAPSHOT`; alternatively, 'git reset --hard'
> Should `deploy-coatjava.sh` fail midway, your `git` repository may no longer be in the recommended initial state; here's how to revert:
> 1. `git switch development` to switch back to `development` branch
> 1. `libexec/version-bump.sh $ORIGINAL_VERSION` and be sure to include the `-SNAPSHOT`; alternatively, `git reset --hard`
> 1. `git branch -D version/$VERSION` to delete the created version-bump branch

**Legend:**
Expand Down