Skip to content

Commit

Permalink
🐙 Little fixing touches to my action (1)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShafSpecs committed Jan 28, 2024
1 parent 17f50b8 commit 992dbb2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/sync-s3-posts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ jobs:
run: |
if [ -z "$(git diff HEAD^ HEAD -- posts/)" ]; then
echo "No changes detected."
echo "{changes}={false}" >> $GITHUB_OUTPUT
echo "{changes}={false}" >> $GITHUB_ENV
else
echo "Changes detected."
echo "{changes}={true}" >> $GITHUB_OUTPUT
echo "{changes}={true}" >> $GITHUB_ENV
fi
- name: 🪣 Sync to S3
if: steps.git-check.outputs.changes == 'true'
if: github.env.changes == 'true'
uses: jakejarvis/s3-sync-action@master
with:
args: --acl public-read --follow-symlinks --delete
Expand Down
4 changes: 2 additions & 2 deletions posts/main/guides/examples.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "Remix PWA Doc Components"
title: "Remix PWA Theme Doc Components"
alternateTitle: "Components"
description: "List of available components to the Remix PWA Journal Stack theme"
description: "List of available components to the Remix PWA Journal Stack theme."
---

import Warn from './warn.tsx'
Expand Down

0 comments on commit 992dbb2

Please sign in to comment.