Rename DSC_2816.JPG to homelab.jpg #16
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 | |
on: | |
push: | |
branches: ["main"] | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Make a web call with a secret key | |
env: | |
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }} | |
run: | | |
# Define the target URL | |
URL="https://archbar.me/.deploy/" | |
# Make the HTTP GET request with the secret key parameter | |
curl -X GET "$URL?key=$DEPLOY_KEY" |