Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 4 additions & 19 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:

deb:
needs: drafter
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
permissions:
id-token: write
attestations: write
Expand Down Expand Up @@ -104,10 +104,6 @@ jobs:
run-id: ${{ inputs.run_id }}
github-token: ${{ github.token }}

# TODO!
- run: ls -la .
- run: ls -laR dist

- run: mkdir -p deb
- name: Create deb
run: |
Expand All @@ -121,9 +117,6 @@ jobs:
DIST_DIR: dist
ARCHS: "arm64 amd64"

# TODO!
- run: ls -laR deb

- uses: actions/attest-build-provenance@v3
with:
subject-path: deb/*.deb
Expand Down Expand Up @@ -162,10 +155,6 @@ jobs:
run-id: ${{ inputs.run_id }}
github-token: ${{ github.token }}

# TODO!
- run: ls -la .
- run: ls -laR dist

- name: Set BIN_DIRS environment variable
run: |
echo 'BIN_DIRS<<EOF' >> "$GITHUB_ENV"
Expand All @@ -184,17 +173,13 @@ jobs:
run: |
while read -u3 -r bin_dir; do
echo "::group::==> ${bin_dir}"
cp README.md LICENSE "bin/${bin_dir}/"
chmod +x "bin/${bin_dir}/php-matrix" && \
tar -C "bin/${bin_dir}" -cvf - php-matrix README.md LICENSE | \
cp README.md LICENSE "dist/${bin_dir}/"
chmod +x "dist/${bin_dir}/php-matrix" && \
tar -C "dist/${bin_dir}" -cvf - php-matrix README.md LICENSE | \
gzip --best - > "tarball/${bin_dir}.tar.gz"
echo "::endgroup::"
done 3< <(echo "${BIN_DIRS}")

# TODO!
- run: ls -la .
- run: ls -laR tarball

- name: Validate tarballs
run: |
while read -u3 -r bin_dir; do
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,6 @@ jobs:
if: github.event_name == 'push' && github.ref_type == 'tag'
needs:
- pest
- build
- e2e
- merge
permissions:
Expand Down
Loading