File tree Expand file tree Collapse file tree 1 file changed +6
-12
lines changed
Expand file tree Collapse file tree 1 file changed +6
-12
lines changed Original file line number Diff line number Diff line change 1616 # Allows you to run this workflow manually from the Actions tab
1717 workflow_dispatch :
1818
19- # A workflow run is made up of one or more jobs that can run sequentially or in parallel
2019jobs :
21- # This workflow contains a single job called "build"
2220 build :
23- # The type of runner that the job will run on
2421 runs-on : ubuntu-latest
2522
26- # Steps represent a sequence of tasks that will be executed as part of the job
2723 steps :
28- # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2924 - uses : actions/checkout@v3
3025 - uses : actions/setup-python@v4
3126 with :
@@ -37,14 +32,13 @@ jobs:
3732 run : poetry install
3833
3934
40- - name : Test stuff
41- run : |
42- mkdir build
43- cd build
44- echo "<h1>hello</h1>" > index.html
45- cd ..
35+ - name : Pull
36+ id : pull
37+ run : poetry run python -m uc_python.pull
38+ - name : Make slides
39+ id : make
4640
47- - name : Build Artifact
41+ - name : Make slides
4842 id : build
4943 uses : actions/upload-pages-artifact@v1
5044 with :
You can’t perform that action at this time.
0 commit comments