Skip to content
This repository was archived by the owner on Jan 4, 2024. It is now read-only.

Commit 5810079

Browse files
committed
qiita init
0 parents  commit 5810079

File tree

5 files changed

+1835
-0
lines changed

5 files changed

+1835
-0
lines changed

.github/workflows/publish.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Please set 'QIITA_TOKEN' secret to your repository
2+
name: Publish articles
3+
4+
on:
5+
push:
6+
branches:
7+
- main
8+
- master
9+
workflow_dispatch:
10+
11+
permissions:
12+
contents: write
13+
14+
concurrency:
15+
group: ${{ github.workflow }}-${{ github.ref }}
16+
cancel-in-progress: false
17+
18+
jobs:
19+
publish_articles:
20+
runs-on: ubuntu-latest
21+
timeout-minutes: 5
22+
steps:
23+
- uses: actions/checkout@v3
24+
with:
25+
fetch-depth: 0
26+
- uses: increments/qiita-cli/actions/publish@v1
27+
with:
28+
qiita-token: ${{ secrets.QIITA_TOKEN }}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.remote
2+
node_modules

0 commit comments

Comments
 (0)