diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 39f5cfc2..00000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1 +0,0 @@ -patreon: nurdism diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 101a0e04..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: "[BUG]" -labels: '' -assignees: '' - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Desktop (please complete the following information):** - - OS: [e.g. iOS] - - Browser [e.g. chrome, safari] - - Version [e.g. 22] - -**Additional context** -Add any other context about the problem here. - -**Client Log:** -``` -client log here.... -``` - -**Server Log:** -``` -server log here.... -``` diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index e0c0168b..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: "[FEATURE]" -labels: '' -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index dc3fcca4..00000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: build - -on: - pull_request: - branches: [ master ] - paths: - - 'client/**' - - 'server/**' - -jobs: - build: - name: Build - runs-on: ubuntu-latest - container: nurdism/neko:dev - steps: - - name: Check out code - uses: actions/checkout@v2 - - - name: Fetch unshallow - run: git fetch --prune --tags --unshallow - - - name: Get go dependencies and build server - working-directory: server - run: | - go get -v -t -d . - ./build - - - name: Get npm dependencies and build Client - working-directory: client - run: | - npm install - npm run build \ No newline at end of file diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 1e5cfd12..00000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: deploy - -on: - push: - branches: [ master ] - paths: - - 'client/**' - - 'server/**' - -jobs: - deploy: - name: Deploy - runs-on: ubuntu-latest - container: nurdism/neko:dev - steps: - - name: Check out code - uses: actions/checkout@v2 - - - name: Fetch unshallow - run: git fetch --prune --tags --unshallow - - - name: Get go dependencies and build server - working-directory: server - run: | - go get -v -t -d . - ./build - - - name: Get npm dependencies and build Client - working-directory: client - run: | - npm install - npm run build - - - name: Build the base image - run: docker build -f ./.docker/files/base/Dockerfile -t nurdism/neko:base . - - - name: Build the latest image - run: docker build -f ./.docker/files/firefox/Dockerfile -t nurdism/neko:latest . - - - name: Push the Docker images - run: | - echo "${{ secrets.DOCKER_PASSWORD }}" | docker login ${{ secrets.DOCKER_REGISTRY_URL }} -u ${{ secrets.DOCKER_USERNAME }} --password-stdin - docker push nurdism/neko:base - docker push nurdism/neko:latest