Skip to content

Commit 358d5a3

Browse files
authored
Merge pull request #2 from SundaeSwap-finance/sg/restore-history
Sg/restore history
2 parents e1ba1ba + 7012199 commit 358d5a3

File tree

7 files changed

+1379
-762
lines changed

7 files changed

+1379
-762
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
# This file was autogenerated by dist: https://github.com/astral-sh/cargo-dist
1+
# This file was autogenerated by dist: https://axodotdev.github.io/cargo-dist
22
#
33
# Copyright 2022-2024, axodotdev
4-
# Copyright 2025 Astral Software Inc.
54
# SPDX-License-Identifier: MIT or Apache-2.0
65
#
76
# CI that:
@@ -65,7 +64,7 @@ jobs:
6564
# we specify bash to get pipefail; it guards against the `curl` command
6665
# failing. otherwise `sh` won't catch that `curl` returned non-0
6766
shell: bash
68-
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/cargo-dist/releases/download/v0.28.5/cargo-dist-installer.sh | sh"
67+
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.30.2/cargo-dist-installer.sh | sh"
6968
- name: Cache dist
7069
uses: actions/upload-artifact@v4
7170
with:
@@ -218,8 +217,8 @@ jobs:
218217
- plan
219218
- build-local-artifacts
220219
- build-global-artifacts
221-
# Only run if we're "publishing", and only if local and global didn't fail (skipped is fine)
222-
if: ${{ always() && needs.plan.outputs.publishing == 'true' && (needs.build-global-artifacts.result == 'skipped' || needs.build-global-artifacts.result == 'success') && (needs.build-local-artifacts.result == 'skipped' || needs.build-local-artifacts.result == 'success') }}
220+
# Only run if we're "publishing", and only if plan, local and global didn't fail (skipped is fine)
221+
if: ${{ always() && needs.plan.result == 'success' && needs.plan.outputs.publishing == 'true' && (needs.build-global-artifacts.result == 'skipped' || needs.build-global-artifacts.result == 'success') && (needs.build-local-artifacts.result == 'skipped' || needs.build-local-artifacts.result == 'success') }}
223222
env:
224223
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
225224
runs-on: "ubuntu-22.04"

0 commit comments

Comments
 (0)