Skip to content

Commit

Permalink
github action
Browse files Browse the repository at this point in the history
  • Loading branch information
kewitham committed Jan 17, 2024
1 parent 0b7a0e7 commit 4e13b45
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/content-grid.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build content grid

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v3

- name: Make the script files executable
run: chmod +x ../../scripts/create_content_grid.sh
- name: Build content grid
run: ../../scripts/create_content_grid.sh

- name: Archive content grid results
uses: actions/upload-artifact@v3
with:
name: content_grid
path: ../../scripts/out/content_grid.xls

0 comments on commit 4e13b45

Please sign in to comment.