diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index d1fe0844..aeb9be3a 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -1,8 +1,8 @@ on: push: # Sequence of patterns matched against refs/tags - tags: - - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 + # tags: + # - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 name: Create Release @@ -13,27 +13,32 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v2 - - name: Create Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token - with: - tag_name: ${{ github.ref }} - release_name: Release ${{ github.ref }} - body: | - Changes in this Release - - First Change - - Second Change - draft: false - prerelease: false - - name: Upload Release Asset - id: upload-release-asset - uses: actions/upload-release-asset@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps - asset_path: builds/ACS.zip - asset_name: ACS${{ github.ref_name }}.zip - asset_content_type: application/zip \ No newline at end of file + - name: Zip Folder + run: | + cd builds + rm -rf ACS.zip + zip -r ACS + # - name: Create Release + # id: create_release + # uses: actions/create-release@v1 + # env: + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token + # with: + # tag_name: ${{ github.ref }} + # release_name: Release ${{ github.ref }} + # # body: | + # # Changes in this Release + # # - First Change + # # - Second Change + # draft: false + # prerelease: false + # - name: Upload Release Asset + # id: upload-release-asset + # uses: actions/upload-release-asset@v1 + # env: + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # with: + # upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps + # asset_path: builds/ACS.zip + # asset_name: ACS${{ github.ref_name }}.zip + # asset_content_type: application/zip \ No newline at end of file diff --git a/builds/ACS.zip b/builds/ACS.zip deleted file mode 100644 index b5338d97..00000000 Binary files a/builds/ACS.zip and /dev/null differ