Skip to content

chore(deps): bump devalue from 5.5.0 to 5.6.2 in /examples/gift_card #2550

chore(deps): bump devalue from 5.5.0 to 5.6.2 in /examples/gift_card

chore(deps): bump devalue from 5.5.0 to 5.6.2 in /examples/gift_card #2550

Workflow file for this run

name: Nix Build
on:
push:
jobs:
nix-build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
ssh-key: ${{ secrets.WORKFLOW_SSH_KEY }}
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v4
- name: Run the Magic Nix Cache
uses: DeterminateSystems/magic-nix-cache-action@v13
- name: Build Aiken
shell: bash
run: |
set +e
nix build
exitcode="$?"
if [[ "$exitcode" != "0" ]] ; then
echo "::warning::Nix build failed with exit code $exitcode"
exit 0
else
exit "$exitcode"
fi