Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/exportarts/jenkins-build-tag-action
A GitHub Action to trigger a tag-based build in Jenkins
https://github.com/exportarts/jenkins-build-tag-action
actions jenkins tag
Last synced: about 1 month ago
JSON representation
A GitHub Action to trigger a tag-based build in Jenkins
- Host: GitHub
- URL: https://github.com/exportarts/jenkins-build-tag-action
- Owner: exportarts
- Created: 2020-04-29T11:29:29.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-07-12T05:24:30.000Z (over 1 year ago)
- Last Synced: 2024-09-30T08:21:19.808Z (about 2 months ago)
- Topics: actions, jenkins, tag
- Language: JavaScript
- Homepage:
- Size: 264 KB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# jenkins-build-tag-action
A GitHub Action to trigger a tag-based build in Jenkins.
You can find a description of all input parameters in [`action.yml`](./action.yml).
## Example Usage
```yml
name: Build latest releaseon:
push:
tags:
- '*'jobs:
trigger-build:
runs-on: ubuntu-latest
steps:
- name: Trigger Tag Build
uses: exportarts/[email protected]
with:
jenkins_host: https://my.jenkins.io
jenkins_basic_auth_token: ${{secrets.JENKINS_BASIC_AUTH_TOKEN}}
jenkins_job: my-job
```## Debugging
If the action fails and you want to debug the cause, you can set a secret `ACTIONS_STEP_DEBUG=true`.
More information can be found [here](https://github.com/actions/toolkit/blob/master/docs/action-debugging.md).
If you think the issue is related to this action, please open an issue!