We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d077f80 commit 32dab54Copy full SHA for 32dab54
.github/workflows/action.yaml
@@ -30,19 +30,10 @@ jobs:
30
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
31
aws-region: ${{ secrets.AWS_REGION }}
32
33
- - name: Configure Obs3dian
34
- run: |
35
- obs3dian config <<EOF
36
- Y
37
- obs3dian
38
- csocrates_image
39
- ./output
40
- ./
41
- EOF
42
43
- name: Process Markdown files
44
run: |
45
- obs3dian run . --overwrite
+ obs3dian run . --overwrite --usekey ${{ secrets.AWS_ACCESS_KEY_ID }}
46
47
- name: Commit changes
48
Data Structure/queue/queue.md
@@ -2,7 +2,7 @@
2
3
---
4
#### 큐(queue) 란?
5
-
+
6
**==선형 구조==의 형태이며 데이터를 일시적으로 쌓아두기 위한 자료구조 중 하나로 ==선입선출(FIFO, First-In-First-Out)==의 특성을 의미**
7
8
메모리 안 데이터들을 더욱 효율적으로 다루기 위해 만들어진 데이터 참조 방식
0 commit comments