From fa07857d09935a1711cdfe50638de1ec56880874 Mon Sep 17 00:00:00 2001 From: Akshat Sharma Date: Sat, 13 Feb 2021 01:14:29 -0800 Subject: [PATCH 01/12] Create zip-release.yml --- .github/workflows/zip-release.yml | 35 +++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/zip-release.yml diff --git a/.github/workflows/zip-release.yml b/.github/workflows/zip-release.yml new file mode 100644 index 0000000..6b50379 --- /dev/null +++ b/.github/workflows/zip-release.yml @@ -0,0 +1,35 @@ +# This is a basic workflow to help you get started with Actions + +name: action-zip + +# Controls when the action will run. +on: + # Triggers the workflow on push or pull request events but only for the master branch + push: + branches: [ master ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # First job for zipping + zip: + runs-on: ubuntu-latest + steps: + - uses: montudor/action-zip@v0.1.1 + with: + # zip required folders: chrome, other_configs, treestyletab + args: zip -qq -r flyingfox-0.1.${{github.run_id}}.zip chrome other_configs treestyletab + + release: + # release zipped file + runs-on: ubuntu-latest + steps: + - uses: "marvinpinto/action-automatic-releases@latest" + with: + repo_token: "${{ secrets.GITHUB_TOKEN }}" + prerelease: false + draft: true + files: | + flyingfox-0.1.${{github.run_id}}.zip From e249254942f39d2aee587a471add7643206ee674 Mon Sep 17 00:00:00 2001 From: Akshat Sharma Date: Sat, 13 Feb 2021 01:16:49 -0800 Subject: [PATCH 02/12] Update zip-release.yml --- .github/workflows/zip-release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/zip-release.yml b/.github/workflows/zip-release.yml index 6b50379..e6d3037 100644 --- a/.github/workflows/zip-release.yml +++ b/.github/workflows/zip-release.yml @@ -29,6 +29,7 @@ jobs: - uses: "marvinpinto/action-automatic-releases@latest" with: repo_token: "${{ secrets.GITHUB_TOKEN }}" + automatic_release_tag: "latest" prerelease: false draft: true files: | From c534e8a9b7b072327f9f3563ef144c996b08c1ef Mon Sep 17 00:00:00 2001 From: Akshat Sharma Date: Sat, 13 Feb 2021 01:23:36 -0800 Subject: [PATCH 03/12] Update zip-release.yml --- .github/workflows/zip-release.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/zip-release.yml b/.github/workflows/zip-release.yml index e6d3037..39308be 100644 --- a/.github/workflows/zip-release.yml +++ b/.github/workflows/zip-release.yml @@ -20,17 +20,17 @@ jobs: - uses: montudor/action-zip@v0.1.1 with: # zip required folders: chrome, other_configs, treestyletab - args: zip -qq -r flyingfox-0.1.${{github.run_id}}.zip chrome other_configs treestyletab + args: zip -r flyingfox-0.1.${{github.run_number}}.zip chrome other_configs treestyletab - release: - # release zipped file - runs-on: ubuntu-latest - steps: - - uses: "marvinpinto/action-automatic-releases@latest" - with: - repo_token: "${{ secrets.GITHUB_TOKEN }}" - automatic_release_tag: "latest" - prerelease: false - draft: true - files: | - flyingfox-0.1.${{github.run_id}}.zip +# release: +# # release zipped file +# runs-on: ubuntu-latest +# steps: +# - uses: "marvinpinto/action-automatic-releases@latest" +# with: +# repo_token: "${{ secrets.GITHUB_TOKEN }}" +# automatic_release_tag: "latest" +# prerelease: false +# draft: true +# files: | +# flyingfox-0.1.${{github.run_id}}.zip From 68c16a4d0e4d23a1b176802698e67f26726b4711 Mon Sep 17 00:00:00 2001 From: Akshat Sharma Date: Sat, 13 Feb 2021 01:31:37 -0800 Subject: [PATCH 04/12] Update zip-release.yml --- .github/workflows/zip-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/zip-release.yml b/.github/workflows/zip-release.yml index 39308be..799c148 100644 --- a/.github/workflows/zip-release.yml +++ b/.github/workflows/zip-release.yml @@ -20,7 +20,7 @@ jobs: - uses: montudor/action-zip@v0.1.1 with: # zip required folders: chrome, other_configs, treestyletab - args: zip -r flyingfox-0.1.${{github.run_number}}.zip chrome other_configs treestyletab + args: zip -r flyingfox-0.1.${{github.run_number}}.zip . chrome other_configs treestyletab # release: # # release zipped file From 0b1ebd06f2e6ee3ffff81751b40827d0ca377ef9 Mon Sep 17 00:00:00 2001 From: Akshat Sharma Date: Sat, 13 Feb 2021 01:41:05 -0800 Subject: [PATCH 05/12] Update zip-release.yml --- .github/workflows/zip-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/zip-release.yml b/.github/workflows/zip-release.yml index 799c148..d20d3f6 100644 --- a/.github/workflows/zip-release.yml +++ b/.github/workflows/zip-release.yml @@ -20,7 +20,7 @@ jobs: - uses: montudor/action-zip@v0.1.1 with: # zip required folders: chrome, other_configs, treestyletab - args: zip -r flyingfox-0.1.${{github.run_number}}.zip . chrome other_configs treestyletab + args: zip -r flyingfox-0.1.${{github.run_number}}.zip . # release: # # release zipped file From c1c6f73d20b1ab82cdb0b87c8d33c166b44e4f61 Mon Sep 17 00:00:00 2001 From: Akshat Sharma Date: Sat, 13 Feb 2021 01:44:50 -0800 Subject: [PATCH 06/12] Update zip-release.yml --- .github/workflows/zip-release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/zip-release.yml b/.github/workflows/zip-release.yml index d20d3f6..6a3480e 100644 --- a/.github/workflows/zip-release.yml +++ b/.github/workflows/zip-release.yml @@ -20,7 +20,8 @@ jobs: - uses: montudor/action-zip@v0.1.1 with: # zip required folders: chrome, other_configs, treestyletab - args: zip -r flyingfox-0.1.${{github.run_number}}.zip . + args: zip -r flyingfox-0.1.${{github.run_number}}.zip dir/chrome + run: echo ${pwd} # release: # # release zipped file From 9a69131d05982b5bbc45f3365ce72dc29dad707b Mon Sep 17 00:00:00 2001 From: Akshat Sharma Date: Sat, 13 Feb 2021 01:50:55 -0800 Subject: [PATCH 07/12] Update zip-release.yml --- .github/workflows/zip-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/zip-release.yml b/.github/workflows/zip-release.yml index 6a3480e..64431ac 100644 --- a/.github/workflows/zip-release.yml +++ b/.github/workflows/zip-release.yml @@ -20,8 +20,8 @@ jobs: - uses: montudor/action-zip@v0.1.1 with: # zip required folders: chrome, other_configs, treestyletab - args: zip -r flyingfox-0.1.${{github.run_number}}.zip dir/chrome - run: echo ${pwd} + args: zip -r flyingfox-0.1.${{github.run_number}}.zip flyingfox + - run: echo ${pwd} # release: # # release zipped file From a9f4c7f980131eb395a89c43c13bee8649b833a5 Mon Sep 17 00:00:00 2001 From: Akshat Sharma Date: Sat, 13 Feb 2021 01:58:34 -0800 Subject: [PATCH 08/12] Update zip-release.yml --- .github/workflows/zip-release.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/zip-release.yml b/.github/workflows/zip-release.yml index 64431ac..27f6154 100644 --- a/.github/workflows/zip-release.yml +++ b/.github/workflows/zip-release.yml @@ -16,12 +16,15 @@ jobs: # First job for zipping zip: runs-on: ubuntu-latest - steps: - - uses: montudor/action-zip@v0.1.1 - with: - # zip required folders: chrome, other_configs, treestyletab - args: zip -r flyingfox-0.1.${{github.run_number}}.zip flyingfox - - run: echo ${pwd} + steps: + - uses: actions/checkout@master + - name: Zip Folder + run: zip -r flyingfox-0.1.${{github.run_number}}.zip . +# steps: +# - uses: montudor/action-zip@v0.1.1 +# with: +# # zip required folders: chrome, other_configs, treestyletab +# args: zip -r flyingfox-0.1.${{github.run_number}}.zip chrome # release: # # release zipped file From b56c6dae9483613c74eb9fd53b242d1cc4eb09e6 Mon Sep 17 00:00:00 2001 From: Akshat Sharma Date: Sat, 13 Feb 2021 02:07:33 -0800 Subject: [PATCH 09/12] Delete zip-release.yml --- .github/workflows/zip-release.yml | 40 ------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 .github/workflows/zip-release.yml diff --git a/.github/workflows/zip-release.yml b/.github/workflows/zip-release.yml deleted file mode 100644 index 27f6154..0000000 --- a/.github/workflows/zip-release.yml +++ /dev/null @@ -1,40 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: action-zip - -# Controls when the action will run. -on: - # Triggers the workflow on push or pull request events but only for the master branch - push: - branches: [ master ] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # First job for zipping - zip: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - name: Zip Folder - run: zip -r flyingfox-0.1.${{github.run_number}}.zip . -# steps: -# - uses: montudor/action-zip@v0.1.1 -# with: -# # zip required folders: chrome, other_configs, treestyletab -# args: zip -r flyingfox-0.1.${{github.run_number}}.zip chrome - -# release: -# # release zipped file -# runs-on: ubuntu-latest -# steps: -# - uses: "marvinpinto/action-automatic-releases@latest" -# with: -# repo_token: "${{ secrets.GITHUB_TOKEN }}" -# automatic_release_tag: "latest" -# prerelease: false -# draft: true -# files: | -# flyingfox-0.1.${{github.run_id}}.zip From f35cfd4fc952421b591dfe0f04693296d03110a6 Mon Sep 17 00:00:00 2001 From: Akshat Sharma Date: Sat, 13 Feb 2021 02:51:46 -0800 Subject: [PATCH 10/12] Fixed release action --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dd2d17d..b908635 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,6 +12,8 @@ jobs: zip: runs-on: ubuntu-latest steps: + - uses: actions/checkout@master + - uses: montudor/action-zip@v0.1.1 - name: Zip Folder run: zip -r release.zip zip -r flyingfox-0.1.${{github.run_number}}.zip chrome treestyletab other_configs From 09944db00bb812d20de2bc8b3408295494cdbaea Mon Sep 17 00:00:00 2001 From: akshat46 Date: Sat, 13 Feb 2021 02:54:44 -0800 Subject: [PATCH 11/12] disabled release --- .github/workflows/{release.yml => release.yml.bk} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{release.yml => release.yml.bk} (100%) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml.bk similarity index 100% rename from .github/workflows/release.yml rename to .github/workflows/release.yml.bk From eff7160b098707766d5a6228617983ba0b6f997e Mon Sep 17 00:00:00 2001 From: akshat46 Date: Sun, 21 Mar 2021 17:07:06 -0700 Subject: [PATCH 12/12] build: add new release.yml --- .github/workflows/{release.yml.bk => release.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{release.yml.bk => release.yml} (100%) diff --git a/.github/workflows/release.yml.bk b/.github/workflows/release.yml similarity index 100% rename from .github/workflows/release.yml.bk rename to .github/workflows/release.yml