callback_demo/.gitea/workflows/ansible-test.yml
Chris Hammer eea37229a8
All checks were successful
Ansible Test / CentOS9-Ansible-Pipeline (push) Successful in 5s
testing variables/secrets
2023-12-13 20:34:23 -05:00

22 lines
508 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 ${{ secrets.SUPER_SECRET }} > /tmp/super_secret.txt
cat /tmp/super_secret.txt
- name: Variables Echo
run: |
echo ${{ variables.BOB }}