Skip to content

Commit

Permalink
tar artifact directory, remove arm/v7 docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
Loupeznik authored Apr 4, 2023
1 parent d0696b4 commit 37a9b7a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,13 @@ jobs:
shell: bash
run: pnpm run build

- name: Archive artifact
run: tar -czf /tmp/release.tar.gz ./dist

- uses: actions/upload-artifact@v3.1.2
with:
name: artifact
path: ./dist/*
path: /tmp/release.tar.gz

release:
name: Release
Expand All @@ -55,7 +58,7 @@ jobs:
uses: softprops/action-gh-release@v1
with:
files: |
output/**/*
output/*.tar.gz
generate_release_notes: true
name: '${{ github.ref_name }}'

Expand All @@ -72,7 +75,7 @@ jobs:
uses: docker/build-push-action@v4.0.0
with:
context: .
platforms: linux/amd64,linux/arm64,linux/arm/v7
platforms: linux/amd64,linux/arm64
push: true
tags: |
loupeznik/better-wapi-webapp:${{ github.ref_name }}
Expand Down

0 comments on commit 37a9b7a

Please sign in to comment.