Skip to content

Commit

Permalink
closer
Browse files Browse the repository at this point in the history
  • Loading branch information
lorawoodford committed Dec 27, 2024
1 parent e74e135 commit f5573fb
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,9 @@ jobs:
- name: Create prod version file
id: prod
run: |
echo "$(cat plugin.txt)"
echo "$(grep -wsh after_create ${{ github.workspace }}/archivesspace-baseline/backend/app/model/repository.rb -A 81 > prod.txt)" > $GITHUB_OUTPUT
touch prod.txt
grep -wsh after_create ${{ github.workspace }}/archivesspace-baseline/backend/app/model/repository.rb -A 81 > prod.txt
echo "$(cat prod.txt)"
- name: Create ${{ matrix.archivesspace_version }} version file
run: |
Expand All @@ -65,7 +66,7 @@ jobs:
id: baseline
run: |
echo " ${{ steps.plugin.outputs.plugin_file }}"
echo "baseline_changes=$(diff ${{ steps.prod.outputs.prod_file }} ${{ steps.plugin.outputs.plugin_file }})" > $GITHUB_OUTPUT
echo "baseline_changes=$(diff prod.txt plugin.txt)" > $GITHUB_OUTPUT
- name: Diff with new versions
id: new
Expand Down

0 comments on commit f5573fb

Please sign in to comment.