diff --git a/.github/workflows/migrate-release.yaml b/.github/workflows/migrate-release.yaml index 82e78e3..c786f78 100644 --- a/.github/workflows/migrate-release.yaml +++ b/.github/workflows/migrate-release.yaml @@ -20,25 +20,25 @@ jobs: goarch: [amd64, arm64] steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version: '1.23' - - - name: Build binary - env: - GOOS: ${{ matrix.goos }} - GOARCH: ${{ matrix.goarch }} - run: | - mkdir -p dist - binary_name=migrate-${{ matrix.goos }}-${{ matrix.goarch }} - go build -o dist/${binary_name} - - - name: Upload release assets - uses: softprops/action-gh-release@v1 - with: - tag_name: ${{ github.ref_name }} - files: dist/* + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/setup-go@v5 + with: + go-version: '1.23' + + - name: Build binary + env: + GOOS: ${{ matrix.goos }} + GOARCH: ${{ matrix.goarch }} + run: | + mkdir -p dist + binary_name=migrate-${{ matrix.goos }}-${{ matrix.goarch }}-${{ github.ref_name }} + go build -o dist/${binary_name} + + - name: Upload release assets + uses: softprops/action-gh-release@v1 + with: + tag_name: ${{ github.ref_name }} + files: dist/* \ No newline at end of file diff --git a/migrate_linux_amd64 b/migrate_linux_amd64 deleted file mode 100755 index 286ba6c..0000000 Binary files a/migrate_linux_amd64 and /dev/null differ diff --git a/migrate_macos_amd64 b/migrate_macos_amd64 deleted file mode 100755 index 93567fc..0000000 Binary files a/migrate_macos_amd64 and /dev/null differ diff --git a/migrate_macos_arm64 b/migrate_macos_arm64 deleted file mode 100755 index 75015b4..0000000 Binary files a/migrate_macos_arm64 and /dev/null differ