Skip to content

Commit

Permalink
🐙 Little fixing touches to my action (3)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShafSpecs committed Jan 28, 2024
1 parent 0b02099 commit 1fbefd5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/sync-s3-posts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ jobs:
run: |
if [ -z "$(git diff HEAD^ HEAD -- posts/)" ]; then
echo "No changes detected."
echo "{changes}={false}" >> $GITHUB_ENV
echo "changes=false" >> "$GITHUB_ENV"
else
echo "Changes detected."
echo "{changes}={true}" >> $GITHUB_ENV
echo "changes=true" >> "$GITHUB_ENV"
fi
- name: 🪣 Sync to S3
Expand All @@ -51,5 +51,4 @@ jobs:
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: 'eu-north-1'
SOURCE_DIR: 'posts'
DEST_DIR: 'posts'
changes: ${{ github.env.changes }}
DEST_DIR: 'posts'
2 changes: 1 addition & 1 deletion posts/main/guides/examples.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "Remix PWA Theme Doc Components"
title: "Remix PWA Theme Documentation Components"
alternateTitle: "Components"
description: "List of available components to the Remix PWA Journal Stack theme."
---
Expand Down

0 comments on commit 1fbefd5

Please sign in to comment.