https://github.com/phantom9999/actions
https://github.com/phantom9999/actions
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/phantom9999/actions
- Owner: phantom9999
- Created: 2020-05-12T15:06:41.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-10-17T10:45:31.000Z (over 4 years ago)
- Last Synced: 2024-03-14T19:17:55.822Z (over 2 years ago)
- Language: Shell
- Size: 84.9 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# custom container build action
run build in custom container, such as fedora, centos, opensuse.
## Inputs
### `shell_main`
**Required** the path of file to build the project. Default `main.sh`.
## Example usage
```
name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: use docker build
uses: phantom9999/actions@v22
with:
shell_main: "action.sh"
```