Skip to content

Commit a060927

Browse files
authoredMar 23, 2020
Merge pull request #51 from ocefpaf/workaround_zipfile
workaround actions/upload-artifact#38 I think I'm still missing something, but I don't see any negative consequences. Plus, when you tell me it's ready to merge, I merge! Ok, most of the time ...
2 parents 44d3413 + eaf1ecb commit a060927

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed
 

‎.github/workflows/check_jekyll_build.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,26 @@ on:
44
branches: [ master ]
55

66
jobs:
7-
# Job to test that web pages build
87
jekyll_build:
98
name: Jekyll build of web pages
109
runs-on: ubuntu-latest
1110

1211
steps:
12+
# https://github.com/actions/checkout
1313
- name: Checkout
1414
uses: actions/checkout@v2
1515

16+
# https://github.com/marketplace/actions/build-jekyll
1617
- name: Build with Jekyll
1718
uses: jerryjvl/jekyll-build-action@v1
1819

20+
# workaround https://github.com/actions/upload-artifact/issues/38
21+
- name: tarball
22+
run: tar czf site.tar.gz ./_site/
23+
24+
# https://github.com/actions/upload-artifact
1925
- name: Upload Website artifact
2026
uses: actions/upload-artifact@v1
2127
with:
2228
name: Website
23-
path: ./_site/
29+
path: site.tar.gz

‎.github/workflows/jekyll-diff.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# https://github.com/David-Byrne/jekyll-diff-action
2+
3+
name: Jekyll diff
4+
on: [push]
5+
6+
jobs:
7+
diff-site:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v1
11+
- uses: David-Byrne/jekyll-diff-action@v1.2.0
12+
env:
13+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

‎_pages/01-applicants.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ image: ohw18-hacking2.JPG
1111

1212
In Oceanhackweek we will explore the intersection of data science and oceanography through tutorials and hands-on “hacking” projects. In tutorials, we will learn data science tools, cloud computing, visualization, and a suite of software assets to interact with data sets of complex temporal-spatial structures or high volume. In project sessions, we will immediately put these skills to use by implementing research, computation, or visualization ideas in a group setting. To best benefit from the program, participant are expected to have some experience with Python programming and data analysis.
1313

14-
If you are ready to apply, please use the application form [https://form.jotform.com/oceanhack/2019](https://form.jotform.com/oceanhack/2019)
14+
If you are ready to apply, please use the application form [https://form.jotform.com/oceanhack/2020](https://form.jotform.com/oceanhack/2020)
1515

1616

1717
---

0 commit comments

Comments
 (0)