Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/blog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2021-08-31 21:26:30 +0300
committerGitHub <noreply@github.com>2021-08-31 21:26:30 +0300
commitd9c097343e602f5287888cdb7eb24a720d44df41 (patch)
tree25cb22a79ca3473805de389159ee26dd36c7016e
parentb5c65ba25afc1700a30d0e56183b5a4f7e7308bf (diff)
Update Ci script
Remove redundant `success()` checks
-rw-r--r--.github/workflows/ci.yml3
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 4ad09ec9..0b7316d7 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -37,7 +37,7 @@ jobs:
- name: Upload docs
uses: actions/upload-artifact@v2
- if: success() && github.repository == 'twbs/blog' && github.ref == 'refs/heads/main'
+ if: github.repository == 'twbs/blog' && github.ref == 'refs/heads/main'
with:
name: docs
path: ./_site/
@@ -60,7 +60,6 @@ jobs:
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
- if: success()
with:
allow_empty_commit: false
personal_token: ${{ secrets.PERSONAL_TOKEN }}