Skip to content

Commit

Permalink
Try smoke workflow steps without bash shell specifier
Browse files Browse the repository at this point in the history
  • Loading branch information
chalin committed Jan 13, 2024
1 parent 0cd8ee0 commit 2ad0cc9
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/smoke.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,13 @@ jobs:
cache: npm
cache-dependency-path: package.json
- run: tools/install-hugo.sh
shell: bash
- name: Make site (non-PR)
if: github.event_name != 'pull_request'
run: |
mkdir tmp && cd tmp && set -x
mkdir tmp && cd tmp
../tools/make-site.sh -p $BASE_REPO -v $SHA
shell: bash
- name: Make site from PR
if: github.event_name == 'pull_request'
run: |
mkdir tmp && cd tmp && set -x
mkdir tmp && cd tmp
../tools/make-site.sh -p $PR_REPO -v $BRANCH
shell: bash

0 comments on commit 2ad0cc9

Please sign in to comment.