debug #22
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
name: debug | |
on: | |
workflow_dispatch: | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
ZENODO_SANDBOX_ACCESS_TOKEN: ${{ secrets.ZENODO_SANDBOX_ACCESS_TOKEN }} | |
jobs: | |
in-concept: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Test creating a draft in an existing concept | |
uses: zenodraft/action@dbg | |
with: | |
concept: '23750' | |
metadata: .github/.zenodo-in-concept.json | |
verbose: true | |
# - name: debugging making a zipfile | |
# run: zip -r -v zipped.zip . -x /.git/* | |
# - name: debugging making a tarfile | |
# run: | | |
# rm zipped.zip | |
# touch tarred.tar.gz | |
# tar --exclude='.' --exclude='..' --exclude='.git' --exclude=tarred.tar.gz -zcvf tarred.tar.gz `ls -1a` |