Skip to content

Delete .github/11

Delete .github/11 #3

Workflow file for this run

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: Execute Python script for decoding
run: |
python src/decode.py
- name: Install dependencies and run decode
run: |
npm install
npm run decode -- [-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
ls
git add output.js
git add output.py
git commit -m "Add decoded output file"
git push