Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ci-space/workflows
useful workflows
https://github.com/ci-space/workflows
continuous-integration publishing
Last synced: 12 days ago
JSON representation
useful workflows
- Host: GitHub
- URL: https://github.com/ci-space/workflows
- Owner: ci-space
- Created: 2024-12-23T00:33:40.000Z (about 1 month ago)
- Default Branch: master
- Last Pushed: 2025-01-13T20:33:57.000Z (19 days ago)
- Last Synced: 2025-01-13T21:29:32.134Z (19 days ago)
- Topics: continuous-integration, publishing
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Workflows
## Release Docker based GitHub Action
This manual action does:
- Generate new version by choice of: major, minor, patch
- Set new version into docker image in action.yaml
- Build image for new version
- Commit and push action.yaml
- Create and push new tag### Usage
.github/workflows/release.yaml:
```yaml
name: releasepermissions: write-all
on:
workflow_dispatch:
inputs:
version:
description: version
required: true
type: choice
options:
- major
- minor
- patchjobs:
release:
uses: ci-space/workflows/.github/workflows/release-docker-github-action.yaml@master
secrets: inherit
with:
version: ${{ github.event.inputs.version }}
```