12 lines
337 B
Markdown
12 lines
337 B
Markdown
To use the service in your ci, add the following Task:
|
|
```yaml
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
needs: publish
|
|
steps:
|
|
- name: Run updater action
|
|
uses: https://git.leon-hoppe.de/leon.hoppe/ServiceUpdater@main
|
|
with:
|
|
service: ${{ inputs.service }}
|
|
``` |