Skip to content

Commit 6528429

Browse files
author
Anita Caron
committed
Update commit to stage new files
1 parent b510ea6 commit 6528429

2 files changed

Lines changed: 15 additions & 14 deletions

File tree

.github/workflows/release.yaml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,18 @@ jobs:
3434
run: |
3535
git config --global user.name 'Anita Caron'
3636
git config --global user.email 'anitacaron@users.noreply.github.com'
37-
git commit -am "Automated report"
37+
git add .
38+
git commit -m "Automated report"
3839
git push origin master
39-
# - name: Release
40-
# id: release-snapshot
41-
# uses: actions/create-release@latest
42-
# env:
43-
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
44-
# with:
45-
# tag_name: v${{ steps.date.outputs.date }}
46-
# release_name: ${{ steps.date.outputs.date }}
47-
# body: ASCT+b tables validation
48-
# commitish: master
49-
# draft: false
50-
# prerelease: false
40+
- name: Release
41+
id: release-snapshot
42+
uses: actions/create-release@latest
43+
env:
44+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45+
with:
46+
tag_name: v${{ steps.date.outputs.date }}
47+
release_name: ${{ steps.date.outputs.date }}
48+
body: ASCT+b tables validation
49+
commitish: master
50+
draft: false
51+
prerelease: false

src/template_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
report_r['Table'] = args.job
3030
report_r = pd.DataFrame.from_dict(report_r)
31-
report_r_path = f"report_relationship_{TODAY}.tsv"
31+
report_r_path = f"../reports/report_relationship_{TODAY}.tsv"
3232

3333
class_template.to_csv(args.output_file, sep=',',
3434
index=False)

0 commit comments

Comments
 (0)