An open API service indexing awesome lists of open source software.

https://github.com/timo-reymann/deterministic-zip-gh-action

GitHub Action to integrate https://github.com/timo-reymann/deterministic-zip the easy way.
https://github.com/timo-reymann/deterministic-zip-gh-action

build deterministic deterministic-zip github-action

Last synced: 3 months ago
JSON representation

GitHub Action to integrate https://github.com/timo-reymann/deterministic-zip the easy way.

Awesome Lists containing this project

README

        

# deterministic-zip-gh-action

[![LICENSE](https://img.shields.io/github/license/timo-reymann/deterministic-zip-gh-action)](https://github.com/timo-reymann/deterministic-zip-gh-action/blob/main/LICENSE)





GitHub Action to run deterministic-zip in your pipeline

## Required for usage

- no special requirements

## Usage

```yaml
name: Build and Deploy
on: [push]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Build zip file
uses: timo-reymann/deterministic-zip-gh-action@v1
with:
source: .
target: my-archive.zip
# working-directory: if required, set the working directory to run deterministic-zip from. By default it's `.`
# args: your additional arguments if required go here
```