Remove old files
This commit is contained in:
parent
7ae116cf34
commit
55851396c9
4 changed files with 0 additions and 89 deletions
2
.gitattributes
vendored
2
.gitattributes
vendored
|
@ -1,2 +0,0 @@
|
||||||
# Heist templates
|
|
||||||
*.tpl linguist-language=HTML
|
|
31
.github/ISSUE_TEMPLATE/bug_report.md
vendored
31
.github/ISSUE_TEMPLATE/bug_report.md
vendored
|
@ -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.
|
|
8
.github/ISSUE_TEMPLATE/config.yml
vendored
8
.github/ISSUE_TEMPLATE/config.yml
vendored
|
@ -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
|
|
48
.github/workflows/publish.yaml
vendored
48
.github/workflows/publish.yaml
vendored
|
@ -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
|
|
||||||
|
|
Loading…
Reference in a new issue