File tree 1 file changed +3
-7
lines changed
1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change 10
10
- README.md
11
11
- LICENSE
12
12
13
- # Allows you to run this workflow manually from the Actions tab
14
13
workflow_dispatch :
15
14
16
15
permissions :
17
16
contents : read
18
17
pages : write
19
18
id-token : write
20
19
21
- # Allow one concurrent deployment
22
20
concurrency :
23
21
group : " pages"
24
22
cancel-in-progress : true
32
30
uses : actions/checkout@v3
33
31
with :
34
32
fetch-depth : 0
35
- # submodules: true
36
- # If using the 'assets' git submodule from Chirpy Starter, uncomment above
37
- # (See: https://github.com/cotes2020/chirpy-starter/tree/main/assets)
38
33
39
34
- name : Setup Pages
40
35
id : pages
43
38
- name : Setup Ruby
44
39
uses : ruby/setup-ruby@v1
45
40
with :
46
- ruby-version : 3 # reads from a '.ruby-version' or '.tools-version' file if 'ruby-version' is omitted
41
+ ruby-version : 3
47
42
bundler-cache : true
48
43
49
44
- name : Build site
56
51
bundle exec htmlproofer _site --disable-external --check-html --allow_hash_href
57
52
58
53
- name : Upload site artifact
59
- uses : actions/upload-pages- artifact@v1
54
+ uses : actions/upload-artifact@v4
60
55
with :
56
+ name : site-artifact
61
57
path : " _site${{ steps.pages.outputs.base_path }}"
62
58
63
59
deploy :
You can’t perform that action at this time.
0 commit comments