Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andy9775/gat
A set of helper tools for building out GitHub Actions
https://github.com/andy9775/gat
bash github-actions nodejs typescript
Last synced: 18 days ago
JSON representation
A set of helper tools for building out GitHub Actions
- Host: GitHub
- URL: https://github.com/andy9775/gat
- Owner: andy9775
- License: apache-2.0
- Created: 2018-12-24T01:23:45.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-27T20:24:53.000Z (almost 6 years ago)
- Last Synced: 2023-09-19T06:42:32.537Z (about 1 year ago)
- Topics: bash, github-actions, nodejs, typescript
- Language: Shell
- Size: 85 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GAT - GitHub Actions Tools
A set of helpers for building composable GitHub actions
## Installation
When building a GitHub Action start with:
```Dockerfile
# source
FROM andy9775/gat as gat
# ================= start of action =================
# any compatible source
FROM alpine
# ============== copy specific helpers ==============
# in this case, copy the environment variable helpers
COPY --from=gat /gat/env/shell /env
RUN /env/setup.sh
# ================= continue action =================
# ...# execute entrypoint.sh with available env variables
ENTRYPOINT [ "load_env", "/entrypoint.sh" ]
```