From 7b9386dc8c67f5dc76b64cdca904df2450419c5f Mon Sep 17 00:00:00 2001 From: Priom Chowdhury Date: Tue, 8 Jun 2021 14:24:18 +0600 Subject: [PATCH] removed redundant stage & prod release which is replaced by release drafter; updated readme --- .github/workflows/prod_release.yml | 26 -------------------------- .github/workflows/stage_release.yml | 26 -------------------------- readme.md | 12 +++++++++--- 3 files changed, 9 insertions(+), 55 deletions(-) delete mode 100644 .github/workflows/prod_release.yml delete mode 100644 .github/workflows/stage_release.yml diff --git a/.github/workflows/prod_release.yml b/.github/workflows/prod_release.yml deleted file mode 100644 index 5f9ccf7a79..0000000000 --- a/.github/workflows/prod_release.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Release Production -on: - push: - branches: - - "prod" - -jobs: - build: - name: Release Production - runs-on: ubuntu-20.04 - steps: - - name: Checkout code - uses: actions/checkout@v2 - - name: Short SHA - id: vars - run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" - - name: Create Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: prod-${{ steps.vars.outputs.sha_short }} - release_name: prod-${{ steps.vars.outputs.sha_short }} - draft: false - prerelease: false diff --git a/.github/workflows/stage_release.yml b/.github/workflows/stage_release.yml deleted file mode 100644 index 0ea0baa4e0..0000000000 --- a/.github/workflows/stage_release.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Release Staging -on: - push: - branches: - - "dev" - -jobs: - build: - name: Release Staging - runs-on: ubuntu-20.04 - steps: - - name: Checkout code - uses: actions/checkout@v2 - - name: Short SHA - id: vars - run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" - - name: Create Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: stage-${{ steps.vars.outputs.sha_short }} - release_name: stage-${{ steps.vars.outputs.sha_short }} - draft: false - prerelease: true diff --git a/readme.md b/readme.md index 6afce63b62..c1adbbd099 100644 --- a/readme.md +++ b/readme.md @@ -5,7 +5,9 @@ ![full-word-stacked](https://user-images.githubusercontent.com/47398578/120363393-1b343f00-c2da-11eb-8578-130f88a0b75b.png) -[ChainSafe Files](https://files.chainsafe.io) is an end-to-end encrypted file storage app that utilizes the [IPFS](https://ipfs.io) and [Filecoin network](https://filecoin.io) to store user data. +> [ChainSafe Files](https://files.chainsafe.io) is an end-to-end encrypted file storage app that utilizes the [IPFS](https://ipfs.io) and [Filecoin](https://filecoin.io) to store user data. + +> Visit app at https://app.files.chainsafe.io ## Requirements @@ -37,7 +39,6 @@ Complex Modules such as Billing, Login modules, basically shared wide scope/opin The UI for Chainsafe Files ## Development - You will need a Github Personal Access token with `read:package` permissions. This can be obtained [here](https://github.com/settings/tokens) You then need to add it as environment variable, depending on your OS and shell: @@ -56,4 +57,9 @@ Our tests use Cypress running against the local instance of the Files UI. The fi By default the tests are run against `localhost:3000` - To start the tests UI run `yarn test:files-ui` -- To start all the tests like in CI run `yarn test:ci:files-ui` +- To start all the tests like in CI run `yarn test:ci:files-ui` + +## License +All `files-ui` code are licensed under the [GNU Lesser General Public License v3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) also included in our repository in the [LICENSE.md](https://github.com/ChainSafe/files-ui/blob/dev/LICENSE.md) file + +© Copyright Protected & All Rights Reserved by [ChainSafe Systems](https://chainsafe.io) \ No newline at end of file