Skip to content

Merge pull request #1 from exterrestris/unmount-unlisted #5

Merge pull request #1 from exterrestris/unmount-unlisted

Merge pull request #1 from exterrestris/unmount-unlisted #5

Workflow file for this run

---
name: Release
on: # yamllint disable-line rule:truthy
push:
tags:
- '*'
workflow_dispatch:
jobs:
test:
uses: ./.github/workflows/ci.yml
release:
runs-on: ubuntu-latest
needs: [test]
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
path: 'tigattack.mergerfs'
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install Ansible
run: pip3 install ansible-core
- name: Import role to Galaxy
run: >-
ansible-galaxy role import --api-key ${{ secrets.GALAXY_API_KEY }}
${{ github.repository_owner }} ${{ github.event.repository.name }}