Skip to content

Commit

Permalink
ci: only run Publish(release) on 'published' event, silence bootstrap…
Browse files Browse the repository at this point in the history
… test log (#632)

follow-up to #628
  • Loading branch information
bobheadxi committed Oct 20, 2019
1 parent 13601e2 commit 6f1cf43
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Publish (release)

on:
release:
types: [ published, prereleased ]
types: [ published ]

jobs:
daemon:
Expand Down
1 change: 0 additions & 1 deletion client/bootstrap/bootstrap_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,5 @@ func TestBootstrap_Integration(t *testing.T) {
// Check if daemon is online following bootstrap
status, err := c.Status(context.Background())
require.NoError(t, err, "status check of bootstrapped daemon failed")
t.Logf("daemon status: %+v", status)
assert.Equal(t, "test", status.InertiaVersion)
}

0 comments on commit 6f1cf43

Please sign in to comment.