diff --git a/.github/workflows/decode.yml b/.github/workflows/decode.yml index 7377c7cfc..4fa337370 100644 --- a/.github/workflows/decode.yml +++ b/.github/workflows/decode.yml @@ -12,8 +12,6 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v2 - - name: List files in root directory - run: ls -l - name: Install dependencies and run decode run: | npm install @@ -24,9 +22,7 @@ jobs: git config --local user.name "action" - name: Save decoded output to repository run: | - git status - git add output.js # Add the decoded output file - git status + git add output.js git commit -m "Add decoded output file" git push