Skip to content

Commit

Permalink
Ready for 1.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdebock committed Mar 29, 2022
1 parent 5d806f7 commit 2da9916
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ The API Key for your personal Galaxy account. Found under https://galaxy.ansible

For repositories that have multiple roles, you can specify a (relative) path to go into before releasing the role. Defaults to `./`. An example value could be `my_role`.

### `git_branch`

You may specify a specific branch to push. The default is `master`.

## Example usage

```yaml
Expand All @@ -46,7 +50,7 @@ jobs:
- name: checkout
uses: actions/checkout@v2
- name: galaxy
uses: robertdebock/galaxy-action@1.1.0
uses: robertdebock/galaxy-action@1.2.0
with:
galaxy_api_key: ${{ secrets.galaxy_api_key }}
```
Expand All @@ -68,14 +72,14 @@ jobs:
with:
path: "${{ github.repository }}"
- name: molecule
uses: robertdebock/molecule-action@2.6.3
uses: robertdebock/molecule-action@4.0.7
release:
needs:
- test
runs-on: ubuntu-latest
steps:
- name: galaxy
uses: robertdebock/galaxy-action@1.1.0
uses: robertdebock/galaxy-action@1.2.0
with:
galaxy_api_key: ${{ secrets.galaxy_api_key }}
```
Expand All @@ -96,8 +100,9 @@ jobs:
- name: checkout
uses: actions/checkout@v2
- name: galaxy
uses: robertdebock/galaxy-action@1.1.0
uses: robertdebock/galaxy-action@1.2.0
with:
galaxy_api_key: ${{ secrets.galaxy_api_key }}
path: my_role
git_branch: my_branch
```

0 comments on commit 2da9916

Please sign in to comment.