diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a05a0b8a63..a3a4003f5e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -52,45 +52,3 @@ jobs: run: gh release create v${{ steps.newVersion.outputs.nextVersionTag }} --generate-notes ${{ contains( steps.newVersion.outputs.nextVersionTag, '-' ) && '--prerelease' || '' }} --target ${{ github.ref_name }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - checks: - uses: ./.github/workflows/code-check.yml - secrets: - NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} - with: - affected: ${{ github.event_name == 'pull_request' }} - - test-publish: - uses: ./.github/workflows/test-publish.yml - secrets: - NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} - needs: [build] - - publish-packages: - uses: ./.github/workflows/publish.yml - if: ${{ github.event_name != 'pull_request' && github.event_name != 'merge_group' }} - permissions: - packages: write - contents: read - secrets: inherit - needs: [version, build, checks, test-publish] - with: - version: ${{ needs.version.outputs.nextVersionTag }} - prerelease: ${{ needs.version.outputs.isPreRelease == 'true' }} - isPullRequest: false - - documentation-main: - secrets: inherit - needs: [version, build, checks] - if: ${{ github.event_name != 'pull_request' && github.event_name != 'merge_group' && github.ref_name == 'main' }} - uses: ./.github/workflows/documentation.yml - with: - version: ${{ needs.version.outputs.nextVersionTag }} - documentation-pr: - secrets: inherit - needs: [version] - if: ${{ (github.event_name == 'pull_request' && github.base_ref == 'main') || github.event_name == 'merge_group' }} - uses: ./.github/workflows/documentation.yml - with: - version: ${{ needs.version.outputs.nextVersionTag }} - shouldDeploy: false diff --git a/README.md b/README.md index 1224d772ab..e0508cc357 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ +RANDOM TEST

Otter Framework

Super cute Otter! diff --git a/tools/github-actions/download-build-output/action.yml b/tools/github-actions/download-build-output/action.yml index 16146cb70d..2cc2c03021 100644 --- a/tools/github-actions/download-build-output/action.yml +++ b/tools/github-actions/download-build-output/action.yml @@ -34,9 +34,20 @@ runs: archive_format: 'zip', }); let fs = require('fs'); - fs.writeFileSync(`${process.env.GITHUB_WORKSPACE}/${{ inputs.artifactName }}.zip`, Buffer.from(download.data)); + fs.writeFileSync(`${process.env.GITHUB_WORKSPACE}/${{ inputs.artifactName }}.zip.zip`, Buffer.from(download.data)); + - run: ls -a + if: github.event_name == 'workflow_run' + shell: bash + - run: unzip -q -n ${{ inputs.artifactName }}.zip.zip + if: github.event_name == 'workflow_run' + shell: bash + - run: ls -a + shell: bash - run: unzip -q -n ${{ inputs.artifactName }}.zip shell: bash + + - run: ls -a + shell: bash - run: rm -f ${{ inputs.artifactName }}.zip shell: bash