From 3ff45168374c39792ce2b05bb82c26f287b1c063 Mon Sep 17 00:00:00 2001 From: ianlapham Date: Wed, 11 Dec 2019 15:14:31 -0500 Subject: [PATCH] new updates --- .github/workflows/total.yaml | 69 ++++++++++++++++++------------------ 1 file changed, 35 insertions(+), 34 deletions(-) diff --git a/.github/workflows/total.yaml b/.github/workflows/total.yaml index 8c242afaf20..9740939a8a9 100644 --- a/.github/workflows/total.yaml +++ b/.github/workflows/total.yaml @@ -13,10 +13,10 @@ jobs: steps: - name: Checkout code uses: actions/checkout@master - - name: Create production build - run: | - npm install - npm run build + # - name: Create production build + # run: | + # npm install + # npm run build - name: Create Release id: create_release uses: actions/create-release@v1.0.0 @@ -25,35 +25,36 @@ jobs: with: tag_name: ${{ github.ref }} release_name: Release ${{ github.ref }} + body: test text draft: false prerelease: false - - name: Zip the build - uses: thedoctor0/zip-release@master - with: - filename: 'build.zip' - path: './build' - exclusions: '*.git* /*node_modules/*' - - uses: 'finnp/create-file-action@master' - env: - FILE_NAME: 'run.md' - FILE_DATA: "#Run Uniswap\n1. Download build.zip and unzip\n2. In terminal navigate to that directory\n Run these two commands \n- yarn global add serve \n- serve -s build " - - name: Upload Build - id: upload-release-asset - uses: actions/upload-release-asset@v1.0.1 - 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: build.zip - asset_name: build.zip - asset_content_type: application/zip - - name: Upload setup - id: upload-release-asset2 - uses: actions/upload-release-asset@v1.0.1 - 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: run.md - asset_name: run.md - asset_content_type: application/zip + # - name: Zip the build + # uses: thedoctor0/zip-release@master + # with: + # filename: 'build.zip' + # path: './build' + # exclusions: '*.git* /*node_modules/*' + # - uses: 'finnp/create-file-action@master' + # env: + # FILE_NAME: 'run.md' + # FILE_DATA: "#Run Uniswap\n1. Download build.zip and unzip\n2. In terminal navigate to that directory\n Run these two commands \n- yarn global add serve \n- serve -s build " + # - name: Upload Build + # id: upload-release-asset + # uses: actions/upload-release-asset@v1.0.1 + # 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: build.zip + # asset_name: build.zip + # asset_content_type: application/zip + # - name: Upload setup + # id: upload-release-asset2 + # uses: actions/upload-release-asset@v1.0.1 + # 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: run.md + # asset_name: run.md + # asset_content_type: application/zip