Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
kogepanh committed Dec 19, 2021
1 parent 6a8fadc commit d32725f
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 44 deletions.
11 changes: 0 additions & 11 deletions .devcontainer/Dockerfile

This file was deleted.

2 changes: 0 additions & 2 deletions .devcontainer/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@ version: "3"
services:
ubuntu-texlive-ja:
image: korosuke613/ubuntu-texlive-ja-devcontainer
# build: .
command: sleep infinity
volumes:
- ../:/workdir
# - ~/.gitconfig:/root/.gitconfig
- ./.latexmkrc:/root/.latexmkrc
environment:
SHELL: "/bin/bash"
23 changes: 1 addition & 22 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set DATE
id: set-date
run: |
DATE=`TZ=Asia/Tokyo date "+%Y%m%dT%H%M%S"`
DATE=`TZ=Asia/Tokyo date "+%Y-%m-%dT%H%M"`
echo "::set-output name=DATE::$DATE"
- name: Create Release
Expand All @@ -26,24 +26,3 @@ jobs:
with:
tag_name: ${{ steps.set-date.outputs.DATE }}
release_name: ${{ steps.set-date.outputs.DATE }}

# - name: Create issue
# id: create-issue
# uses: JasonEtco/create-an-issue@v2

# - if: success()
# name: Create pr
# id: create-pr
# uses: peter-evans/create-pull-request@v3
# with:
# commit-message: "generate logs for #${{ steps.create-issue.outputs.number }}"
# title: "PR for generate logs"
# reviewers: ${{ github.actor }}

# - if: success()
# name: Merge pr
# run: gh pr merge ${{ steps.create-pr.outputs.pull-request.number }} --merge

# - if: success()
# name: Close issue
# run: gh issue close ${{ steps.create-issue.outputs.number }}
9 changes: 0 additions & 9 deletions LICENSE

This file was deleted.

21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,27 @@

## Options

### 複数プロジェクトを共存させたい人向け

ディレクトリを複数作成すればよいです。本サンプルでは `src` ディレクトリのみが存在していますが、以下のようにフォルダ名を変更しても問題なく動きます。

```txt
.
├── .devcontainer
├── .gitignore
├── .vscode
├── project1
│   ├── img
│   ├── resume.tex
│   ├── style
│   └── thesis.tex
└── project2
├── img
├── resume.tex
├── style
└── thesis.tex
```

### ホットリロードがウザイ人向け

Tex ファイルが大きくなったきた時など、ホットリロードを止めたい人もいるかと思います。そういう人は `.vscode/settings.json` を以下のように編集してください。
Expand Down

0 comments on commit d32725f

Please sign in to comment.