Skip to content

Commit

Permalink
properly quoted string
Browse files Browse the repository at this point in the history
  • Loading branch information
redlukas committed Jan 25, 2023
1 parent ac889c3 commit b79000e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,16 @@ jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3.3.0
with:
fetch-depth: 0
- name: push
uses: redlukas/reddit_wiki_updater@v0.1
with:
sub_name: 'wifi',
reddit_client_id: ${{ secrets.REDDIT_CLIENT_ID }},
reddit_client_secret: ${{ secrets.REDDIT_CLIENT_SECRET }},
reddit_user_name: ${{ secrets.REDDIT_USER_NAME }},
sub_name: 'wifi'
reddit_client_id: ${{ secrets.REDDIT_CLIENT_ID }}
reddit_client_secret: ${{ secrets.REDDIT_CLIENT_SECRET }}
reddit_user_name: ${{ secrets.REDDIT_USER_NAME }}
reddit_user_password: ${{ secrets.REDDIT_USER_PASSWORD }}
```
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ outputs:
description: 'The time we greeted you'
runs:
using: 'node16'
main: 'index.js
main: "index.js"

0 comments on commit b79000e

Please sign in to comment.