Skip to content

Commit

Permalink
TEST
Browse files Browse the repository at this point in the history
  • Loading branch information
smallfawn committed Jun 27, 2024
1 parent 76fd1a3 commit 644ea3a
Show file tree
Hide file tree
Showing 21 changed files with 6,974 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .gitattributes

This file was deleted.

32 changes: 32 additions & 0 deletions .github/workflows/decode.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Decode JavaScript File

on:
push:
branches:
- main
jobs:
decode:
runs-on: ubuntu-latest
permissions:
contents: write
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
npm run decode -- -t obfuscator [-i input.js] [-o output.js]
- name: Configure Git author
run: |
git config --local user.email "[email protected]"
git config --local user.name "action"
- name: Save decoded output to repository
run: |
git status
git add output.js
git status
git commit -m "Add decoded output file"
git push
1 change: 1 addition & 0 deletions input.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file added output.js
Empty file.
Loading

0 comments on commit 644ea3a

Please sign in to comment.