https://github.com/thomasvitale/kn-func-build
GitHub Action to build and publish a container image using the Knative func plugin
https://github.com/thomasvitale/kn-func-build
Last synced: 7 months ago
JSON representation
GitHub Action to build and publish a container image using the Knative func plugin
- Host: GitHub
- URL: https://github.com/thomasvitale/kn-func-build
- Owner: ThomasVitale
- License: apache-2.0
- Archived: true
- Created: 2022-04-18T13:28:43.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-27T00:41:03.000Z (over 2 years ago)
- Last Synced: 2025-02-07T08:49:14.246Z (8 months ago)
- Language: Shell
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kn-func-build
GitHub Action to build and publish a container image using the Knative func plugin.
## Usage
Building and publishing a function using `kn func`.
```yaml
name: Commit Stageon: push
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run Knative tools
uses: thomasvitale/kn-func-build@v1
with:
registry_url: ghcr.io
registry_username: thomasvitale
registry_token: ${{ secrets.GITHUB_TOKEN }}
function_path: .
function_name: spring-boot-func
function_version: 3.9.4
```