Skip to content
This repository has been archived by the owner on May 20, 2024. It is now read-only.

Commit

Permalink
Merge branch 'develop' of github.com:holochain/holonix into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
thedavidmeister committed Aug 5, 2019
2 parents ca109ff + 15a55a3 commit 4cc6f2e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG-UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

### Fixed

### Security
- Fixed github release process

### Security
6 changes: 3 additions & 3 deletions config.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@

hook = {
preflight = ''
echo "<your preflight script here>"
echo "<your preflight script here>"
'';
version = ''
echo "<your versioning script here>"
echo "<your versioning script here>"
'';
publish = ''
echo "<your publishing script here>"
echo "<your publishing script here>"
'';
};

Expand Down
10 changes: 5 additions & 5 deletions release/github/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ let
echo 'Creating github release'
echo
github-release release \
--tag ${config.release.tag} \
--title ${config.release.tag} \
--token "$( git config --get hub.oauthtoken )" \
--tag '${config.release.tag}' \
--title '${config.release.tag}' \
--description "${description-generator}" \
--owner ${config.release.github.owner} \
--repo ${config.release.github.repo} \
--token "$( git config --get hub.oauthtoken )"
--owner '${config.release.github.owner}' \
--repo '${config.release.github.repo}'
'';
in
{
Expand Down

0 comments on commit 4cc6f2e

Please sign in to comment.