mirror of
https://github.com/roles-ansible/ansible_role_gitea.git
synced 2024-08-16 11:39:50 +02:00
afe1705cf0
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
22 lines
434 B
YAML
22 lines
434 B
YAML
---
|
|
name: Galaxy release
|
|
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
push:
|
|
branches: ['main']
|
|
release:
|
|
types: ['created']
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 'checkout git repo'
|
|
uses: actions/checkout@v4
|
|
|
|
- name: 'release on galaxy'
|
|
uses: robertdebock/galaxy-action@1.2.1
|
|
with:
|
|
galaxy_api_key: ${{ secrets.galaxy_api_key }}
|
|
git_branch: 'main'
|