Skip to content

Archive

Archive #13

Workflow file for this run

name: Test Git
on:
push:
jobs:
bundle:
name: Git
runs-on: ubuntu-latest
container: alpine/git
steps:
- uses: actions/checkout@v4
- run: git archive -v --format zip --prefix foo/ --output foo.zip HEAD
# - run: git config --system --add safe.directory "$PWD"
# - run: git config safe.directory
# - run: git archive -v --format zip --prefix foo/ --output foo.zip HEAD