Skip to content

Commit

Permalink
disable checks while i fuss with releases
Browse files Browse the repository at this point in the history
  • Loading branch information
xaocon committed Mar 2, 2022
1 parent e31467b commit 619ece5
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 19 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Rust Checks

on:
push:
branches:
- main
pull_request:
branches:
- main
# push:
# branches:
# - main
# pull_request:
# branches:
# - main
# should add vars that can trigger release
workflow_dispatch:

Expand Down
28 changes: 15 additions & 13 deletions .github/workflows/create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
tags:
- "v*"
workflow_dispatch:

env:
CARGO_TERM_COLOR: always
Expand Down Expand Up @@ -64,15 +63,18 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
-
name: Get Artifacts
uses: actions/download-artifact@v2
-
name: Debug where artifacts are
run: find .
-
name: Publish
uses: softprops/action-gh-release@v1
with:
files: kubeshim-*
body: Release of ${{ github.ref_name }}.
-
name: Checkout sources
uses: actions/checkout@v2
-
name: Get Artifacts
uses: actions/download-artifact@v2
-
name: Debug where artifacts are
run: find .
# -
# name: Publish
# uses: softprops/action-gh-release@v1
# with:
# files: kubeshim-*
# body: Release of ${{ github.ref_name }}.

0 comments on commit 619ece5

Please sign in to comment.