diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 9fa2e9f6..efd091f9 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -4,10 +4,10 @@ on: # For pushes to main, build binaries and store them as artifacts (also upload Docker images) # For pushes to main with tags, also make a GitHub release. push: - branches: - - main - tags: - - "v*" +# branches: +# - main +# tags: +# - "v*" jobs: build_binary: @@ -129,20 +129,20 @@ jobs: type=semver,pattern={{version}} type=semver,pattern={{major}}.{{minor}} - - name: Build and push Docker image (Linux only) - if: matrix.build == 'linux-x86_64' || matrix.build == 'linux-aarch_64' - uses: docker/build-push-action@v5 - with: - context: . - push: true - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} - - - name: Upload binaries as artifacts - uses: actions/upload-artifact@v4 - with: - name: ${{ env.ARTIFACT }} - path: ${{ env.SOURCE }} + # - name: Build and push Docker image (Linux only) + # if: matrix.build == 'linux-x86_64' || matrix.build == 'linux-aarch_64' + # uses: docker/build-push-action@v5 + # with: + # context: . + # push: true + # tags: ${{ steps.meta.outputs.tags }} + # labels: ${{ steps.meta.outputs.labels }} + # + # - name: Upload binaries as artifacts + # uses: actions/upload-artifact@v4 + # with: + # name: ${{ env.ARTIFACT }} + # path: ${{ env.SOURCE }} github_release: name: Perform GitHub release @@ -181,12 +181,12 @@ jobs: tar -C artifacts/seafowl-nightly-x86_64-apple-darwin -czf seafowl-${{ env.RELEASE_VERSION }}-x86_64-apple-darwin.tar.gz seafowl cd artifacts/seafowl-nightly-x86_64-pc-windows-msvc && zip -r ../../seafowl-${{ env.RELEASE_VERSION }}-x86_64-pc-windows-msvc.zip seafowl.exe - - name: Upload release archive - uses: softprops/action-gh-release@v1 - with: - files: | - seafowl-${{ env.RELEASE_VERSION }}-x86_64-unknown-linux-gnu.tar.gz - seafowl-${{ env.RELEASE_VERSION }}-aarch_64-unknown-linux-gnu.tar.gz - seafowl-${{ env.RELEASE_VERSION }}-x86_64-apple-darwin.tar.gz - seafowl-${{ env.RELEASE_VERSION }}-x86_64-pc-windows-msvc.zip - body_path: notes-${{ env.RELEASE_VERSION }}.md +# - name: Upload release archive +# uses: softprops/action-gh-release@v1 +# with: +# files: | +# seafowl-${{ env.RELEASE_VERSION }}-x86_64-unknown-linux-gnu.tar.gz +# seafowl-${{ env.RELEASE_VERSION }}-aarch_64-unknown-linux-gnu.tar.gz +# seafowl-${{ env.RELEASE_VERSION }}-x86_64-apple-darwin.tar.gz +# seafowl-${{ env.RELEASE_VERSION }}-x86_64-pc-windows-msvc.zip +# body_path: notes-${{ env.RELEASE_VERSION }}.md