-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workflow to generate data distribution
- Loading branch information
1 parent
6035ae1
commit d11fb4c
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Build data archive | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- 'data/**/*.toml' | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Create path | ||
run: mkdir dist | ||
|
||
- name: Create data archive | ||
run: tar cJv dist/data.tar.xz data/ | ||
|
||
- name: Write timestamp to file | ||
run: date --iso-8601=seconds --utc > dist/timestamp.txt | ||
|
||
- name: Write commit hash to file | ||
run: git rev-parse --short HEAD > dist/commithash.txt | ||
|
||
- name: Create new branch | ||
run: git switch --orphan dist | ||
|
||
- name: Add files | ||
run: | | ||
git add dist/ | ||
git commit -m 'Add distribution' | ||
git push --force origin dist |