This repository has been archived by the owner on Nov 15, 2024. It is now read-only.
Upgrade Node to 20, fleek-cli to 0.1.8 #20
Workflow file for this run
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
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 | |
uses: ./ | |
with: | |
apiKey: ${{ secrets.FLEEK_API_KEY }} | |
- name: Get the output url | |
run: echo "The deploy url ${{ steps.deploy.outputs.deployUrl }}" |