Skip to content

Commit

Permalink
Sync citation file
Browse files Browse the repository at this point in the history
  • Loading branch information
gbayarri committed May 28, 2024
1 parent e9d7ad7 commit ef46af0
Showing 1 changed file with 11 additions and 17 deletions.
28 changes: 11 additions & 17 deletions .github/workflows/citation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,26 +11,20 @@ jobs:
sync:
runs-on: ubuntu-latest
steps:

#- name: Checkout repo
# uses: actions/checkout@v2
# with:
# repository: bioexcel/biobb_analysis
# path: ./
- name: Checkout repo
uses: actions/checkout@v2
with:
repository: bioexcel/biobb_analysis
path: ./

- name: Download file using wget
run: wget -O ./CITATION.cff https://raw.githubusercontent.com/bioexcel/biobb/master/CITATION.cff

- name: Check if file has changed
run: pwd

- name: Check if file has changed
run: ls -la ../
run: ls -la ./

#- name: Commit and push changes
# run: |
# git config --global user.name 'github-actions[bot]'
# git config --global user.email 'github-actions[bot]@users.noreply.github.com'
# git add .
# git commit -m 'Sync citation file from biobb repo'
# git push
- name: Commit and push changes if file has changed
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git diff --exit-code CITATION.cff || (git add CITATION.cff && git commit -m "Updated CITATION.cff" && git push)

0 comments on commit ef46af0

Please sign in to comment.