summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorClementTsang <cjhtsang@uwaterloo.ca>2021-05-15 13:43:27 -0400
committerClementTsang <cjhtsang@uwaterloo.ca>2021-05-15 13:43:27 -0400
commit1eb3d3bc383cc8e472d7be413304e078cb74e747 (patch)
tree6c552a31bea24e7120b90d94c7a8b661df1499c4 /.github
parentee6228c2b61c0d20e32df610765838634e1a6361 (diff)
github: remove mocking from nightly
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/nightly.yml12
1 files changed, 3 insertions, 9 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml
index 541178b0..ab15a5a2 100644
--- a/.github/workflows/nightly.yml
+++ b/.github/workflows/nightly.yml
@@ -7,10 +7,6 @@ on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
- inputs:
- isMock:
- description: "Mock nightly run, defaults to 'false'"
- default: "false"
jobs:
create-github-release:
@@ -25,7 +21,6 @@ jobs:
- name: Delete tag and release
uses: dev-drprasad/delete-tag-and-release@v0.1.3
- if: github.event.inputs.isMock == 'false'
with:
delete_release: true
tag_name: nightly
@@ -38,7 +33,6 @@ jobs:
- name: Create nightly GitHub release
id: release
uses: actions/create-release@v1
- if: github.event.inputs.isMock == 'false'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
@@ -222,7 +216,7 @@ jobs:
# TODO: Move this elsewhere; do this all at once, and do not continue if any fails. Store artifacts. Do the same for deployment.
- name: Upload main release
- if: github.event.inputs.isMock == 'false'
+ if:
uses: actions/upload-release-asset@v1.0.1
id: upload
env:
@@ -242,7 +236,7 @@ jobs:
cargo wix
- name: Upload msi file (Windows x86-64 MSVC)
- if: matrix.triple.target == 'x86_64-pc-windows-msvc' && github.event.inputs.isMock == 'false'
+ if: matrix.triple.target == 'x86_64-pc-windows-msvc'
uses: actions/upload-release-asset@v1.0.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -260,7 +254,7 @@ jobs:
cp ./target/debian/bottom_*.deb ./bottom_${{ env.RELEASE_VERSION }}_amd64.deb
- name: Upload Debian file (Linux x86-64 GNU)
- if: matrix.triple.target == 'x86_64-unknown-linux-gnu' && matrix.triple.container == '' && github.event.inputs.isMock == 'false'
+ if: matrix.triple.target == 'x86_64-unknown-linux-gnu' && matrix.triple.container == ''
uses: actions/upload-release-asset@v1.0.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}