delete unused requirements file #10
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: release | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push | |
push: | |
branches: [main] | |
# A workflow run is made up of one or more jobs | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Deploy the collection | |
uses: artis3n/ansible_galaxy_collection@v2 | |
with: | |
api_key: ${{ secrets.GALAXY_TOKEN }} |