Merge pull request #3 from tigersoft/bug/fix-typo-in-readme #4
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: Deploy to Cloud | ||
run: | | ||
echo "Deploying to the cloud..." | ||
# Here you would typically have a script or command that deploys your application | ||
# For example: | ||
# npm run deploy | ||
# Use the GitHub token to perform actions on GitHub | ||
echo "Using GitHub token to perform actions on GitHub..." | ||
# For example, to list the repositories for the authenticated user: | ||
# curl -H "Authorization: token $GITHUB_TOKEN" https://api.github.com/user/repos | ||
env: | ||
CLOUD_PROVIDER_API_KEY: ${{ secrets.CLOUD_PROVIDER_API_KEY }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |