Skip to content

Commit 176580a

Browse files
committed
test release job v0.1.4
1 parent df43b40 commit 176580a

File tree

3 files changed

+95
-4
lines changed

3 files changed

+95
-4
lines changed

.github/workflows/releace.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
uses: actions/upload-artifact@v2
3939
with:
4040
name: book.pdf
41-
path: book.pdf
41+
path: ./book.pdf
4242

4343
deploy:
4444
name: Release file to GitHub Release
@@ -56,8 +56,8 @@ jobs:
5656
env:
5757
GITHUB_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
5858
with:
59-
tag_name: ${{ github.run_number }}
60-
release_name: Release ${{ github.run_number }}
59+
tag_name: v0.1.${{ github.run_number }}
60+
release_name: Release v0.1.${{ github.run_number }}
6161
draft: false
6262
prerelease: false
6363

@@ -68,6 +68,6 @@ jobs:
6868
GITHUB_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
6969
with:
7070
upload_url: ${{ steps.create_release.outputs.id }}
71-
asset_path: book.pdf
71+
asset_path: ./book.pdf
7272
asset_name: book.pdf
7373
asset_content_type: application/pdf

.gitignore

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

SUMMARY.md

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
# Kimi's LeetcodeGolang Notes
2+
3+
- Codility
4+
- Lesson
5+
- 0001.Iterations
6+
- [Binary Gap](Codility/Lesson/0001.Iterations/Binary-Gap/README.md)
7+
- 0002.Array
8+
- [Cyclic Rotation](Codility/Lesson/0002.Array/CyclicRotation/README.md)
9+
- [Odd Occurrences In Array](Codility/Lesson/0002.Array/OddOccurrencesInArray/README.md)
10+
- 0003.Time-Complexity
11+
- [Frog Jmp](Codility/Lesson/0003.Time-Complexity/FrogJmp/README.md)
12+
- [Perm Missing Elem](Codility/Lesson/0003.Time-Complexity/PermMissingElem/README.md)
13+
- [Tape Equilibrium](Codility/Lesson/0003.Time-Complexity/TapeEquilibrium/README.md)
14+
- 0004.Counting-Elements
15+
- [Frog River One](Codility/Lesson/0004.Counting-Elements/FrogRiverOne/README.md)
16+
- [Max Counters](Codility/Lesson/0004.Counting-Elements/MaxCounters/README.md)
17+
- [Missing Integer](Codility/Lesson/0004.Counting-Elements/MissingInteger/README.md)
18+
- [Perm Check](Codility/Lesson/0004.Counting-Elements/PermCheck/README.md)
19+
- 0005.Prefix-Sums
20+
- [Count Div](Codility/Lesson/0005.Prefix-Sums/CountDiv/README.md)
21+
- [Genomic Range Query](Codility/Lesson/0005.Prefix-Sums/GenomicRangeQuery/README.md)
22+
- [Min Avg Two Slice](Codility/Lesson/0005.Prefix-Sums/MinAvgTwoSlice/README.md)
23+
- [Passing Cars](Codility/Lesson/0005.Prefix-Sums/PassingCars/README.md)
24+
- 0006.Sorting
25+
- [Distinct](Codility/Lesson/0006.Sorting/Distinct/README.md)
26+
- [Max Product Of Three](Codility/Lesson/0006.Sorting/MaxProductOfThree/README.md)
27+
- [Number Of Disc Intersections](Codility/Lesson/0006.Sorting/NumberOfDiscIntersections/README.md)
28+
- [Triangle](Codility/Lesson/0006.Sorting/Triangle/README.md)
29+
- 0007.Stacks-and-Queues
30+
- [Brackets](Codility/Lesson/0007.Stacks-and-Queues/Brackets/README.md)
31+
- [Fish](Codility/Lesson/0007.Stacks-and-Queues/Fish/README.md)
32+
- [Nesting](Codility/Lesson/0007.Stacks-and-Queues/Nesting/README.md)
33+
- [Stone Wall](Codility/Lesson/0007.Stacks-and-Queues/StoneWall/README.md)
34+
- 0008.Leader
35+
- [Dominator](Codility/Lesson/0008.Leader/Dominator/README.md)
36+
- [Equi Leader](Codility/Lesson/0008.Leader/EquiLeader/README.md)
37+
- 0009.Maximum-Slice-Problem
38+
- [Max Double Slice Sum](Codility/Lesson/0009.Maximum-Slice-Problem/MaxDoubleSliceSum/README.md)
39+
- [Max Profit](Codility/Lesson/0009.Maximum-Slice-Problem/MaxProfit/README.md)
40+
- [Max Slice Sum](Codility/Lesson/0009.Maximum-Slice-Problem/MaxSliceSum/README.md)
41+
- 0010.Prime-And-Composite-Numbers
42+
- [Count Factors](Codility/Lesson/0010.Prime-And-Composite-Numbers/CountFactors/README.md)
43+
- [Flags](Codility/Lesson/0010.Prime-And-Composite-Numbers/Flags/README.md)
44+
- [Min Perimeter Rectangle](Codility/Lesson/0010.Prime-And-Composite-Numbers/MinPerimeterRectangle/README.md)
45+
- [Peaks](Codility/Lesson/0010.Prime-And-Composite-Numbers/Peaks/README.md)
46+
- 0011.Sieve-of-Eratosthenes
47+
- [Count Non Divisible](Codility/Lesson/0011.Sieve-of-Eratosthenes/CountNonDivisible/README.md)
48+
- [Count Semiprimes](Codility/Lesson/0011.Sieve-of-Eratosthenes/CountSemiprimes/README.md)
49+
- 0012.Euclidean-Algorithm
50+
- [Chocolates By Numbers](Codility/Lesson/0012.Euclidean-Algorithm/ChocolatesByNumbers/README.md)
51+
- [Common Prime Divisors](Codility/Lesson/0012.Euclidean-Algorithm/CommonPrimeDivisors/README.md)
52+
- 0013.Fibonacci-Numbers
53+
- [Fib Frog](Codility/Lesson/0013.Fibonacci-Numbers/FibFrog/README.md)
54+
- 0015.Caterpillar-Method
55+
- [Abs Distinct](Codility/Lesson/0015.Caterpillar-Method/AbsDistinct/README.md)
56+
- Geeksfor Geeks
57+
- Sorting Algorithms
58+
- [0031.Find-Minimum-Difference-Between-Any-Two-Elements](GeeksforGeeks/SortingAlgorithms/0031.Find-Minimum-Difference-Between-Any-Two-Elements/README.md)
59+
- Leetcode
60+
- [0001.Two-Sum](Leetcode/0001.Two-Sum/README.md)
61+
- [0003.Longest-Substring-Without-Repeating-Characters](Leetcode/0003.Longest-Substring-Without-Repeating-Characters/README.md)
62+
- [0015.3Sum](Leetcode/0015.3Sum/README.md)
63+
- [0019.Remove-Nth-Node-From-End-of-List](Leetcode/0019.Remove-Nth-Node-From-End-of-List/README.md)
64+
- [0027.Remove-Element](Leetcode/0027.Remove-Element/README.md)
65+
- [0035.Search-Insert-Position](Leetcode/0035.Search-Insert-Position/README.md)
66+
- [0046.Permutations](Leetcode/0046.Permutations/README.md)
67+
- [0053.Maximum-Subarray](Leetcode/0053.Maximum-Subarray/README.md)
68+
- [0059.Spiral-Matrix-II](Leetcode/0059.Spiral-Matrix-II/README.md)
69+
- [0075.Sort-Colors](Leetcode/0075.Sort-Colors/README.md)
70+
- [0088.Merge-Sorted-Array](Leetcode/0088.Merge-Sorted-Array/README.md)
71+
- [0094.Binary-Tree-Inorder-Traversal](Leetcode/0094.Binary-Tree-Inorder-Traversal/README.md)
72+
- [0141.Linked-List-Cycle](Leetcode/0141.Linked-List-Cycle/README.md)
73+
- [0142.Linked-List-CycleII](Leetcode/0142.Linked-List-CycleII/README.md)
74+
- [0203.Remove-Linked-List-Elements](Leetcode/0203.Remove-Linked-List-Elements/README.md)
75+
- [0209.Minimum-Size-Subarray-Sum](Leetcode/0209.Minimum-Size-Subarray-Sum/README.md)
76+
- [0310.Minimum-Height-Trees](Leetcode/0310.Minimum-Height-Trees/README.md)
77+
- [0322.Coin-Change](Leetcode/0322.Coin-Change/README.md)
78+
- [0344.Reverse-String](Leetcode/0344.Reverse-String/README.md)
79+
- [0509.Fibonacci-Number](Leetcode/0509.Fibonacci-Number/README.md)
80+
- [0567.Permutation-in-String](Leetcode/0567.Permutation-in-String/README.md)
81+
- [0693.Binary-Number-with-Alternating-Bits](Leetcode/0693.Binary-Number-with-Alternating-Bits/README.md)
82+
- [0704.Binary-Search](Leetcode/0704.Binary-Search/README.md)
83+
- [0721.Accounts-Merge](Leetcode/0721.Accounts-Merge/README.md)
84+
- [0752.Open-the-Lock](Leetcode/0752.Open-the-Lock/README.md)
85+
- [0876.Middle-of-the-Linked-List](Leetcode/0876.Middle-of-the-Linked-List/README.md)
86+
- [Structures](structures/README.md)
87+
- [Template](template/README.md)
88+
* [Content](Content.md)
89+
* [Tags](tags.md)

0 commit comments

Comments
 (0)