Update index.js #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Main Edge Deploy | |
on: | |
pull_request: | |
types: | |
- closed | |
branches: | |
- "main" | |
jobs: | |
deploy: | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install NPM dependencies | |
run: yarn | |
- name: Install Azion CLI | |
run: | | |
curl -o azionlinux https://downloads.azion.com/linux/x86_64/azion | |
sudo mv azionlinux /usr/bin/azion | |
sudo chmod u+x /usr/bin/azion | |
- name: Azion Action Deploy | |
run: | | |
azion -t ${{ secrets.AZION_PERSONAL_TOKEN }} | |
azion deploy |