Skip to content

Commit

Permalink
bump checkout action to version 4 (#448)
Browse files Browse the repository at this point in the history
* add prettier ignore file

* format file and update config

* update home config

* add prettierignore config

* 🤖 update auto-deploy action

* make script file executable

* bump checkout action to version 4
  • Loading branch information
Evavic44 committed Jun 9, 2024
1 parent 2c04851 commit 0d7f9ec
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions .github/workflows/autodeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,20 @@ jobs:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3
with:
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Node & deploy
- name: Setup Node & deploy
uses: actions/setup-node@v3
with:
node-version: "16"
- name: Make script file executable
run: chmod +x extract.sh
- name: Run the script
run: ./extract.sh
- name: Indent table and deploy
- name: Setup Node & deploy
uses: actions/setup-node@v3
with:
node-version: "20"
run: |
npm install
npm run format
npm run format
npm run deploy
git config --global user.name "${{ github.actor }}"
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
git add .
Expand Down

0 comments on commit 0d7f9ec

Please sign in to comment.