-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
49 additions
and
22 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 |
---|---|---|
|
@@ -51,44 +51,71 @@ jobs: | |
# verbose: true | ||
|
||
|
||
with-filenames: | ||
#needs: in-concept | ||
#with-filenames: | ||
# #needs: in-concept | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: checkout | ||
# uses: actions/checkout@v4 | ||
# - name: make contents of the repo unique | ||
# run: | | ||
# git config --global user.name 'jspaaks via CI' | ||
# git config --global user.email '[email protected]' | ||
# git pull | ||
# date +'%B %d, %Y %H:%M:%S %Z' > last-update.txt | ||
# git add last-update.txt | ||
# git commit -m "bumped last update date" | ||
# git push | ||
# - name: Generate dummy files | ||
# run: | | ||
# echo "txt contents" > test.txt | ||
# echo "pdf contents" > test.pdf | ||
# - name: Test with filenames | ||
# uses: zenodraft/action@dbg | ||
# with: | ||
# filenames: test.txt test.pdf | ||
# metadata: .github/.zenodo-with-filenames.json | ||
# verbose: true | ||
|
||
|
||
with-compression-tar-gz: | ||
#needs: with-filenames | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
- name: Generate dummy files | ||
- name: make contents of the repo unique | ||
run: | | ||
echo "txt contents" > test.txt | ||
echo "pdf contents" > test.pdf | ||
- name: Test with filenames | ||
git config --global user.name 'jspaaks via CI' | ||
git config --global user.email '[email protected]' | ||
git pull | ||
date +'%B %d, %Y %H:%M:%S %Z' > last-update.txt | ||
git add last-update.txt | ||
git commit -m "bumped last update date" | ||
git push | ||
- name: Test with compression tar.gz instead of default zip | ||
uses: zenodraft/action@dbg | ||
with: | ||
filenames: test.txt test.pdf | ||
metadata: .github/.zenodo-with-filenames.json | ||
compression: tar.gz | ||
metadata: .github/.zenodo-with-compression-tar-gz.json | ||
verbose: true | ||
|
||
|
||
#with-compression-tar-gz: | ||
# needs: with-filenames | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: checkout | ||
# uses: actions/checkout@v4 | ||
# - name: Test with compression tar.gz instead of default zip | ||
# uses: zenodraft/action@dbg | ||
# with: | ||
# compression: tar.gz | ||
# metadata: .github/.zenodo-with-compression-tar-gz.json | ||
# verbose: true | ||
|
||
|
||
#with-upserting: | ||
# needs: with-compression-tar-gz | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: checkout | ||
# uses: actions/checkout@v4 | ||
# - name: make contents of the repo unique | ||
# run: | | ||
# git config --global user.name 'jspaaks via CI' | ||
# git config --global user.email '[email protected]' | ||
# git pull | ||
# date +'%B %d, %Y %H:%M:%S %Z' > last-update.txt | ||
# git add last-update.txt | ||
# git commit -m "bumped last update date" | ||
# git push | ||
# - name: Test upserting the CITATION.cff with the prereserved doi | ||
# uses: zenodraft/action@dbg | ||
# with: | ||
|