Skip to content

Commit

Permalink
Experimental unpack
Browse files Browse the repository at this point in the history
  • Loading branch information
nsg committed Oct 28, 2023
1 parent 8a8264e commit 0c28581
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/build-release-edge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,28 @@ jobs:
name: haproxy-snap-package
path: ${{ steps.build.outputs.snap }}

run:
prepare-dependencies:
name: Prepare dependencies
runs-on: ubuntu-latest
needs:
- haproxy

steps:
- name: Download artifacts
uses: actions/download-artifact@v3

- name: Extract snap package
run: |
mkdir -p dependencies/workdir
for snap in *.snap; do
NAME="$($name | awk -F_ '{ print $1 }')"
unsquashfs -d dependencies/workdir/$NAME $snap
done
build:
name: Build, Test and Release Snap Package
runs-on: ubuntu-latest
needs: prepare-dependencies

services:
selenium:
Expand Down

0 comments on commit 0c28581

Please sign in to comment.