Skip to content

Commit ddbae45

Browse files
authored
Merge pull request #83 from dokku/master
Release 0.15.0
2 parents 6a7c070 + 643aa90 commit ddbae45

File tree

5 files changed

+13
-186
lines changed

5 files changed

+13
-186
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
jobs:
1515
build:
1616
name: build
17-
runs-on: ubuntu-18.04
17+
runs-on: ubuntu-20.04
1818
strategy:
1919
fail-fast: true
2020

CHANGELOG.md

Lines changed: 0 additions & 180 deletions
This file was deleted.

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM golang:1.17.2-buster
1+
FROM golang:1.17.7-buster
22

33
# hadolint ignore=DL3027
44
RUN apt-get update \
5-
&& apt install apt-transport-https build-essential curl gnupg2 lintian rpm rsync rubygems-integration ruby-dev ruby software-properties-common sudo -qy \
5+
&& apt install apt-transport-https build-essential curl gnupg2 jq lintian rpm rsync rubygems-integration ruby-dev ruby software-properties-common sudo -qy \
66
&& apt-get clean \
77
&& rm -rf /var/lib/apt/lists/*
88

Makefile

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ MAINTAINER_NAME = Jose Diaz-Gonzalez
66
REPOSITORY = sshcommand
77
HARDWARE = $(shell uname -m)
88
SYSTEM_NAME = $(shell uname -s | tr '[:upper:]' '[:lower:]')
9-
BASE_VERSION ?= 0.14.1
9+
BASE_VERSION ?= 0.15.0
1010
IMAGE_NAME ?= $(MAINTAINER)/$(REPOSITORY)
1111
PACKAGECLOUD_REPOSITORY ?= dokku/dokku-betafish
1212

@@ -131,13 +131,19 @@ bin/gh-release:
131131
tar xf bin/gh-release.tgz -C bin
132132
chmod +x bin/gh-release
133133

134-
release: bin/gh-release
134+
bin/gh-release-body:
135+
mkdir -p bin
136+
curl -o bin/gh-release-body "https://raw.githubusercontent.com/dokku/gh-release-body/master/gh-release-body"
137+
chmod +x bin/gh-release-body
138+
139+
release: bin/gh-release bin/gh-release-body
135140
rm -rf release && mkdir release
136141
tar -zcf release/$(NAME)_$(VERSION)_linux_$(HARDWARE).tgz -C build/linux $(NAME)
137142
tar -zcf release/$(NAME)_$(VERSION)_darwin_$(HARDWARE).tgz -C build/darwin $(NAME)
138143
cp build/deb/$(NAME)_$(VERSION)_all.deb release/$(NAME)_$(VERSION)_all.deb
139144
cp build/rpm/$(NAME)-$(VERSION)-1.x86_64.rpm release/$(NAME)-$(VERSION)-1.x86_64.rpm
140145
bin/gh-release create $(MAINTAINER)/$(REPOSITORY) $(VERSION) $(shell git rev-parse --abbrev-ref HEAD)
146+
bin/gh-release-body $(MAINTAINER)/$(REPOSITORY) v$(VERSION)
141147

142148
release-packagecloud:
143149
@$(MAKE) release-packagecloud-deb
@@ -150,6 +156,7 @@ release-packagecloud-deb: build/deb/$(NAME)_$(VERSION)_all.deb
150156
package_cloud push $(PACKAGECLOUD_REPOSITORY)/debian/buster build/deb/$(NAME)_$(VERSION)_all.deb
151157
package_cloud push $(PACKAGECLOUD_REPOSITORY)/debian/bullseye build/deb/$(NAME)_$(VERSION)_all.deb
152158
package_cloud push $(PACKAGECLOUD_REPOSITORY)/raspbian/buster build/deb/$(NAME)_$(VERSION)_all.deb
159+
package_cloud push $(PACKAGECLOUD_REPOSITORY)/raspbian/bullseye build/deb/$(NAME)_$(VERSION)_all.deb
153160

154161
release-packagecloud-rpm: build/rpm/$(NAME)-$(VERSION)-1.x86_64.rpm
155162
package_cloud push $(PACKAGECLOUD_REPOSITORY)/el/7 build/rpm/$(NAME)-$(VERSION)-1.x86_64.rpm

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sshcommand",
3-
"version": "0.14.1",
3+
"version": "0.15.0",
44
"description": "Turn SSH into a thin client specifically for your app",
55
"global": "true",
66
"install": "cp sshcommand /usr/local/bin && chmod +x /usr/local/bin/sshcommand",

0 commit comments

Comments
 (0)