change path #2
This file contains hidden or 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
on: [push] | |
jobs: | |
test-deploy: | |
runs-on: ubuntu-latest | |
name: A job to test the action-deploy action by deploying a test site | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Deploy test site | |
id: deploy | |
uses: fleekhq/action-deploy@v1 | |
with: | |
apiKey: ${{ secrets.FLEEK_API_KEY }} | |
- name: Get the output url | |
run: echo "Deploy url is ${{ steps.deploy.outputs.deployUrl }}" | |
- name: Deploy to Fleek | |
env: | |
FLEEK_API_KEY: ${{ secrets.FLEEK_API_KEY }} | |
run: | | |
# your deploy command here, e.g.: | |
npx fleek-cli deploy |