Skip to content

Commit

Permalink
update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Cosmius committed Feb 9, 2024
1 parent 38317b3 commit cdc2862
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,34 +21,34 @@ jobs:
- ubuntu-22.04
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: haskell/actions/setup@v2
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
id: setup-haskell
with:
enable-stack: true
stack-no-global: true
- run: bash .github/workflows/setup.sh
id: setup
shell: bash
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
key: stack-all-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('stack.yaml', '**/package.yaml', 'hpack-common.yaml') }}
path: ${{ steps.setup.outputs.STACK_ROOT }}
- run: bash .github/workflows/build.sh
shell: bash
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.7"
- run: bash .github/workflows/test.sh
shell: bash
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: failure()
with:
name: x-test-${{ runner.os }}-${{ runner.arch }}
path: tmp/test
- run: bash .github/workflows/publish.sh
shell: bash
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: gugugu-${{ runner.os }}-${{ runner.arch }}
path: build/release

0 comments on commit cdc2862

Please sign in to comment.