Skip to content

Commit

Permalink
Revert "fix: workflow_dispatch."
Browse files Browse the repository at this point in the history
This reverts commit 954f010.
  • Loading branch information
l-monninger committed Feb 1, 2024
1 parent 55f2ed7 commit 70260e9
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,11 @@ jobs:
- name: Build Mac binaries
run: |
cd "$GITHUB_WORKSPACE/movement-sdk"
<<<<<<< HEAD
cargo build -p movement --release
=======
cargo build --release -p movement --features "aptos,sui"
>>>>>>> stage

- name: Upload subnet
uses: actions/upload-release-asset@v1
Expand All @@ -164,7 +168,7 @@ jobs:


pre-release-x86_64-mac:
if: false
if: true # testing
needs: prepare-release
runs-on:
labels: macos-latest
Expand All @@ -186,7 +190,11 @@ jobs:
- name: Build Mac binaries
run: |
cd "$GITHUB_WORKSPACE/movement-sdk"
<<<<<<< HEAD
cargo build -p movement --release
=======
cargo build --release -p movement --features "aptos,sui"
>>>>>>> stage

- name: Upload subnet
uses: actions/upload-release-asset@v1
Expand All @@ -210,6 +218,7 @@ jobs:


pre-release-aarch64-linux:
if: true # testing
needs: prepare-release
runs-on:
labels: buildjet-8vcpu-ubuntu-2204-arm
Expand Down Expand Up @@ -255,8 +264,7 @@ jobs:

pre-release-aarch64-mac:
# this is expensive, so only run on stage and main
# if: github.ref == 'refs/heads/stage' || github.ref == 'refs/heads/main'
if: false
if: github.ref == 'refs/heads/stage' || github.ref == 'refs/heads/main'
needs: prepare-release
runs-on: macos-latest-xlarge
steps:
Expand All @@ -276,7 +284,7 @@ jobs:
pre-release-x86_64-windows:
if: false
if: true # testing
needs: prepare-release
runs-on:
labels: windows-latest
Expand Down

0 comments on commit 70260e9

Please sign in to comment.