Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zweitag/github-actions
This repository contains github actions for usage in our build pipeline.
https://github.com/zweitag/github-actions
Last synced: 2 months ago
JSON representation
This repository contains github actions for usage in our build pipeline.
- Host: GitHub
- URL: https://github.com/zweitag/github-actions
- Owner: zweitag
- License: other
- Created: 2019-09-17T14:54:11.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-24T07:20:55.000Z (9 months ago)
- Last Synced: 2024-08-02T07:12:56.277Z (6 months ago)
- Language: JavaScript
- Size: 1.07 MB
- Stars: 6
- Watchers: 4
- Forks: 2
- Open Issues: 8
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
- awesome-actions - Export global environment variables for succeeding build steps
- fucking-awesome-actions - Export global environment variables for succeeding build steps
- awesome-workflows - Export global environment variables for succeeding build steps
README
# Zweitag GitHub Actions
These are Zweitag's public GitHub actions that we use in our GitHub build pipelines.
## Global Variables
This action sets global environment variables from a file which are available for all subsequent steps.
### Inputs
#### `file`
The relative path to the environment file in your repository. Defaults to `.github/workflows/.env.global`.
The file must be in the following shema:```
ONE_KEY=VALUE1
ANOTHER_KEY=VALUE2
# Comments are possible aswell.
# Empty lines will be ignored.```
### Example usage
#### with default file:
```
- uses: zweitag/github-actions/global-variables@master
```#### with custom environment file:
```
- uses: zweitag/github-actions/global-variables@master
with:
file: 'config/.env.development'
```# License
Copyright 2019 Zweitag GmbH
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.