callback_demo/.gitea/workflows/ansible-test.yml
Chris Hammer fad0d4e05b
All checks were successful
Ansible Test / CentOS9-Ansible-Pipeline (push) Successful in 4s
trying again
2023-12-13 20:37:05 -05:00

24 lines
601 B
YAML

name: Ansible Test
run-name: ${{ gitea.actor }} is tesing Ansible with Gitea Actions
on: [push]
jobs:
# CENTOS 9
#########################
CentOS9-Ansible-Pipeline:
runs-on: ansible-dev-centos9
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Secrets Echo
run: |
echo creating a security hole...
echo ${{ secrets.SUPER_SECRET }} > /tmp/super_secret.txt
echo showing contents of /tmp/super_secret.txt...
cat /tmp/super_secret.txt
- name: Variables Echo
run: |
echo ${{ BOB }}