Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Fix sdk core workflow #1999

Merged
merged 27 commits into from
Aug 7, 2024
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
29d7cec
gov-upgrade-super-token-logic: auto-include tokens using the previous…
d10r Jul 17, 2024
866b946
fix multisig detection
d10r Jul 17, 2024
e5dea4d
disable FlowNFT hooks
d10r Jul 17, 2024
655ae59
remove unused imports
d10r Jul 18, 2024
1349e67
?
d10r Jul 18, 2024
1cc0cdc
don't update IDA, don't update FlowNFTs, remove bad test code
d10r Jul 18, 2024
3708e90
remove obsolete tests
d10r Jul 19, 2024
9eaa785
fix deploy script for tests
d10r Jul 19, 2024
715ab75
updated CHANGELOG
d10r Jul 22, 2024
19e0ac4
not in this PR
d10r Jul 31, 2024
dc1a8b8
Merge branch 'dev' into disable-flownfts
d10r Jul 31, 2024
15722a6
flowNFT purging
d10r Jul 31, 2024
ffa20ce
more removal, changing subgraph too. WIP
d10r Aug 1, 2024
d8436e4
fix tests & devcontainer
kasparkallas Aug 1, 2024
56512a7
fetch newest schema and fix sdk-core build
kasparkallas Aug 1, 2024
8912125
bump sdk-redux version
kasparkallas Aug 1, 2024
d0d6083
remove from verification script
d10r Aug 1, 2024
7d1c686
appease linter
d10r Aug 1, 2024
ea1c6cf
remove ApprovalForAllEvent
d10r Aug 1, 2024
10fbeaa
one more
d10r Aug 1, 2024
2b1a229
github runner switched to docker compose v2
d10r Aug 1, 2024
d8e5c8f
removed MetadataUpdate event, bumped versions, updated metadata, upda…
d10r Aug 2, 2024
e99f014
fix deploy script
d10r Aug 5, 2024
061615b
fix code path with pre-existing DMZForwarder
d10r Aug 5, 2024
d9743c3
more removal
d10r Aug 5, 2024
0612488
fix workflow
d10r Aug 7, 2024
0c0d8c8
Merge branch 'dev' into fix-sdk-core-workflow
d10r Aug 7, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ jobs:

outputs:
publish_sdk_core: ${{ env.SHOULD_PUBLISH_SDK_CORE }}
sdk_core_new_version: ${{ env.SDK_CORE_NEW_VERSION }}

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -182,8 +183,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: sdk-core@v${{ env.SDK_CORE_NEW_VERSION }}
release_name: sdk-core@v${{ env.SDK_CORE_NEW_VERSION }}
tag_name: sdk-core@v${{ needs.check-sdk-core-version.outputs.sdk_core_new_version }}
release_name: sdk-core@v${{ needs.check-sdk-core-version.outputs.sdk_core_new_version }}
body_path: .github/RELEASE_TEMPLATE/release-notes.md
draft: true

Expand Down
Loading