From 5deb5e5230881f77c9a582067981b4d2c6100978 Mon Sep 17 00:00:00 2001 From: "Jurriaan H. Spaaks" Date: Thu, 1 Feb 2024 18:12:55 +0100 Subject: [PATCH] other combination of three jobs in sequence? --- .github/workflows/debug.yml | 51 +++++++++++++++++++------------------ 1 file changed, 26 insertions(+), 25 deletions(-) diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index ecd014a..34ac93b 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -9,27 +9,7 @@ env: jobs: - #no-args: - # runs-on: ubuntu-latest - # steps: - # - name: checkout - # uses: actions/checkout@v4 - # - name: make contents of the repo unique - # run: | - # date +'%B %d, %Y %H:%M:%S %Z' > last-update.txt - # git config --global user.name 'jspaaks via CI' - # git config --global user.email 'jspaaks@users.noreply.github.com' - # git add last-update.txt - # git commit -m "bumped last update date" - # git push - # - name: Test without any input arguments / creating a draft in a new concept - # uses: zenodraft/action@dbg - # with: - # verbose: true - - - in-concept: - #needs: no-args + no-args: runs-on: ubuntu-latest steps: - name: checkout @@ -43,16 +23,37 @@ jobs: git add last-update.txt git commit -m "bumped last update date" git push - - name: Test creating a draft in an existing concept + - name: Test without any input arguments / creating a draft in a new concept uses: zenodraft/action@dbg with: - concept: '23750' - metadata: .github/.zenodo-in-concept.json verbose: true + #in-concept: + # #needs: no-args + # 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 'jspaaks@users.noreply.github.com' + # 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 creating a draft in an existing concept + # uses: zenodraft/action@dbg + # with: + # concept: '23750' + # metadata: .github/.zenodo-in-concept.json + # verbose: true + + with-filenames: - needs: in-concept + needs: no-args runs-on: ubuntu-latest steps: - name: checkout