Skip to content

testing release tag name #2

testing release tag name

testing release tag name #2

Workflow file for this run

name: Update Demo Server
on:
release:
types: [published]
workflow_call:
jobs:
update-demo-environment:

Check failure on line 10 in .github/workflows/updatedemo.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/updatedemo.yml

Invalid workflow file

You have an error in your yaml syntax on line 10
runs-on: ubuntu-latest
steps:
- name: setup ssh
run: |
mkdir -p ~/.ssh/
echo "$SSH_KEY" > ~/.ssh/id_devops
chmod 600 ~/.ssh/id_devops
cat >>~/.ssh/config <<END
Host *.clustercat.com
User root
IdentityFile ~/.ssh/id_devops
StrictHostKeyChecking no
END
env:
SSH_KEY: ${{ secrets.TESTING_SSH_KEY }}
- name: test release tag
run: |
echo ${{ github.event.release.tag_name }}