From 55851396c9bc8a00ed97c16966da808d51a1b0eb Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Mon, 31 May 2021 19:23:34 -0400 Subject: [PATCH] Remove old files --- .gitattributes | 2 -- .github/ISSUE_TEMPLATE/bug_report.md | 31 ------------------ .github/ISSUE_TEMPLATE/config.yml | 8 ----- .github/workflows/publish.yaml | 48 ---------------------------- 4 files changed, 89 deletions(-) delete mode 100644 .gitattributes delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md delete mode 100644 .github/ISSUE_TEMPLATE/config.yml delete mode 100644 .github/workflows/publish.yaml diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index f24f85f..0000000 --- a/.gitattributes +++ /dev/null @@ -1,2 +0,0 @@ -# Heist templates -*.tpl linguist-language=HTML \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 1c7f595..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: bug -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):** - - Browser [e.g. chrome, safari] - - Version [e.g. 22] - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml deleted file mode 100644 index ba193d6..0000000 --- a/.github/ISSUE_TEMPLATE/config.yml +++ /dev/null @@ -1,8 +0,0 @@ -blank_issues_enabled: false -contact_links: - - name: Ask Questions - url: https://github.com/srid/haskell-template/discussions/categories/q-a - about: Post questions in Discussions tab - - name: Request a feature - url: https://github.com/srid/haskell-template/discussions/categories/ideas - about: Enhancement requests should be posted in Discussions tab diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml deleted file mode 100644 index e5aad89..0000000 --- a/.github/workflows/publish.yaml +++ /dev/null @@ -1,48 +0,0 @@ -name: "Build & Publish site" -on: - # Run only when pushing to master branch - push: - branches: - - master -jobs: - build-and-publish: - runs-on: ubuntu-latest - env: - DOCKERTAG: latest - steps: - - uses: actions/checkout@v2 - - uses: cachix/install-nix-action@v13 - with: - install_url: https://nixos-nix-install-tests.cachix.org/serve/lb41az54kzk6j12p81br4bczary7m145/install - install_options: "--tarball-url-prefix https://nixos-nix-install-tests.cachix.org/serve" - extra_nix_config: | - experimental-features = nix-command flakes - - uses: cachix/cachix-action@v10 - with: - name: srid - signingKey: "${{ secrets.CACHIX_SIGNING_KEY }}" - # Only needed for private caches - authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" - - name: Build 🔧 - run: | - nix -L run -j 4 . -- --help - - name: Publish Docker image to Docker Hub - # if: ${{ github.ref == env.MAINLINE && runner.os == 'Linux' }} - run: | - docker load -i $(nix-build docker.nix --argstr tag "${{ env.DOCKERTAG }}") - # docker tag "sridca/haskell-template:${{ env.DOCKERTAG }}" "sridca/haskell-template:${{env.NEURONVER}}" - echo ${{ secrets.DOCKER_PASS }} | docker login -u sridca --password-stdin - set -x - docker push "sridca/haskell-template:${{ env.DOCKERTAG }}" - # docker push "sridca/haskell-template:${{ env.haskell-templateVER }}" - - name: Generate website HTML 🔧 - run: | - mkdir ./output - nix run . -- -C ./docs gen $(pwd)/output - - name: Deploy to website to gh-pages 🚀 - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: output - cname: note.ema.srid.ca - \ No newline at end of file