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: 3 months 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 (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-27T20:24:53.000Z (over 6 years ago)
- Last Synced: 2025-03-23T01:02:19.047Z (3 months ago)
- Topics: bash, github-actions, nodejs, typescript
- Language: Shell
- Size: 85 KB
- Stars: 1
- Watchers: 1
- 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" ]
```