Skip to content

Commit

Permalink
Testing
Browse files Browse the repository at this point in the history
  • Loading branch information
brianjosephmckeon committed Jan 26, 2024
1 parent a817744 commit 86e98ea
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: build
on:
pull_request:
branches:
- "*"
- "none"

concurrency:
group: build-${{ github.ref }}
Expand Down
32 changes: 15 additions & 17 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,25 +17,23 @@ env:

jobs:
build:
name: Set up
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Run Pre-Release Checks
env:
MAINTAINER_EMAIL: ${{ secrets.MAINTAINER_EMAIL }}
with:
TAG: ${{ github.ref }}
run: |
file="${{ github.workspace }}/.github/check-release.sh"
RESULT=$(. "$file $TAG $MAINTAINER_EMAIL" )
if [ $? -neq 0 ];
then
echo "${RESULT}"
exit 1
fi
- uses: actions/checkout@v4

- name: Run Pre-Release Checks
env:
MAINTAINER_EMAIL: ${{ secrets.MAINTAINER_EMAIL }}
with:
TAG: ${{ github.ref }}
run: |
file="${{ github.workspace }}/.github/check-release.sh"
RESULT=$(. "$file $TAG $MAINTAINER_EMAIL" )
if [ $? -neq 0 ];
then
echo "${RESULT}"
exit 1
fi
# - name: Set up GHC ${{ env.ghc-version }}
# uses: haskell-actions/setup@v2
Expand Down

0 comments on commit 86e98ea

Please sign in to comment.