Skip to content

Commit

Permalink
Deploying release to correct repo.
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldotknopf committed Nov 4, 2018
1 parent 5d08ee3 commit 067ab1f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Makefile
Expand Up @@ -58,10 +58,10 @@ bundle: clean_bundle
@tar -czpf output/$(DESTINATION_BUNDLE_FILE_NAME) -C bundle/ .
release:
ifdef TRAVIS_TAG
@echo "creating github release for $(TRAVIS_TAG) ($(VERSION))"
@github-release release --user pauldotknopf --repo darch --tag $(TRAVIS_TAG)
@echo "creating github release for $(TRAVIS_TAG)"
@github-release release --user godarch --repo darch --tag $(TRAVIS_TAG)
@echo "uploading $(DESTINATION_BUNDLE_FILE_NAME)"
@github-release upload --user pauldotknopf --repo darch --tag $(TRAVIS_TAG) --name $(DESTINATION_BUNDLE_FILE_NAME) --file output/$(DESTINATION_BUNDLE_FILE_NAME)
@github-release upload --user godarch --repo darch --tag $(TRAVIS_TAG) --name $(DESTINATION_BUNDLE_FILE_NAME) --file output/$(DESTINATION_BUNDLE_FILE_NAME)
@echo "updating aur"
@./scripts/aur/deploy-aur $(VERSION)
else
Expand Down
2 changes: 1 addition & 1 deletion scripts/aur/deploy-aur
@@ -1,5 +1,5 @@
#!/bin/bash
set -ex
set -e

PACKAGE_VERSION="$1"

Expand Down

0 comments on commit 067ab1f

Please sign in to comment.