diff --git a/.github/workflows/create_publish_artifacts.yml b/.github/workflows/create_publish_artifacts.yml index cf4ef4688..f533411b9 100644 --- a/.github/workflows/create_publish_artifacts.yml +++ b/.github/workflows/create_publish_artifacts.yml @@ -61,11 +61,11 @@ jobs: run: | tar -czf ock_build.tar.gz $(pwd)/build - - name: Upload Artifacts - uses: actions/upload-artifact@v2 - with: - name: riscv-build - path: ock_build.tar.gz + # - name: Upload Artifacts + # uses: actions/upload-artifact@v2 + # with: + # name: riscv-build + # path: ock_build.tar.gz # ock_nightly: # name: OCK Nightly Build Upload @@ -89,33 +89,33 @@ jobs: echo "TAG=$(date +'%Y-%m-%d')-${GITHUB_SHA::7}" >> "$GITHUB_OUTPUT" fi - # - name: Create Nightly OCK pre-release - # uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 - # with: - # files: - # ock_build.tar.gz - # tag_name: nightly-${{ steps.tag.outputs.TAG }} - # name: OCK daily ${{ steps.tag.outputs.TAG }} - # prerelease: true - # body: "Daily build ${{ steps.tag.outputs.TAG }}" - # target_commitish: ${{ github.sha }} - - name: Create Release - id: create_release - uses: actions/create-release@v1 + - name: Create Nightly OCK pre-release + uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 with: - tag_name: ${{ github.ref }} - release_name: Release ${{ github.ref }} - body: | - Changes in this release: - - Add new features - - Fix bugs - draft: true + files: + ock_build.tar.gz + tag_name: nightly-${{ steps.tag.outputs.TAG }} + name: OCK daily ${{ steps.tag.outputs.TAG }} prerelease: true + body: "Daily build ${{ steps.tag.outputs.TAG }}" + target_commitish: ${{ github.sha }} + # - name: Create Release + # id: create_release + # uses: actions/create-release@v1 + # with: + # tag_name: ${{ github.ref }} + # release_name: Release ${{ github.ref }} + # body: | + # Changes in this release: + # - Add new features + # - Fix bugs + # draft: true + # prerelease: true - - name: Upload Release Asset - uses: actions/upload-release-asset@v1 - with: - upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: $(pwd)/ock_build.tar.gz - asset_name: ock_build.tar.gz - asset_content_type: application/gzip \ No newline at end of file + # - name: Upload Release Asset + # uses: actions/upload-release-asset@v1 + # with: + # upload_url: ${{ steps.create_release.outputs.upload_url }} + # asset_path: $(pwd)/ock_build.tar.gz + # asset_name: ock_build.tar.gz + # asset_content_type: application/gzip \ No newline at end of file