Skip to content

Commit

Permalink
bump version, cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
wr0ngway committed Jul 7, 2021
1 parent 1b82bad commit 57ab766
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 13 deletions.
4 changes: 1 addition & 3 deletions .app.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
org: cloudtruth
name: kubetruth
version: 0.5.0


version: 0.6.0
7 changes: 0 additions & 7 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,6 @@ jobs:
restore-keys: |
${{ runner.os }}-gems-
- name: Set environment from cloudtruth
uses: cloudtruth/configure-action@v1
with:
token: "${{ secrets.CLOUDTRUTH_API_KEY }}"
project: "deploy"
environment: "production"

- name: Install Ruby version specified in `.ruby-version`
uses: eregon/use-ruby-action@master

Expand Down
6 changes: 3 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ end
task :helm_package => [:helm_index]

task :build_development do
sh "docker build --target development -t kubetruth-development ."
sh "docker build --target development -t #{APP[:name]}-development ."
end

task :test => [:build_development] do
sh "docker run -e CI -e CODECOV_TOKEN kubetruth-development test"
sh "docker run -e CI -e CODECOV_TOKEN #{APP[:name]}-development test"
end

task :rspec do
Expand All @@ -84,7 +84,7 @@ task :rspec do
end

task :build_release do
sh "docker build --target release -t kubetruth ."
sh "docker build --target release -t #{APP[:name]} ."
end

task :docker_push do
Expand Down

0 comments on commit 57ab766

Please sign in to comment.