Skip to content

Commit e6e198f

Browse files
committed
ci: use swift:6.2-jammy image and fix tar archive paths
- Update CI container to swift:6.2-jammy for consistency with release - Fix tar command to create archive without ./ prefix in paths
1 parent 7e809b1 commit e6e198f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
runs-on: ubuntu-latest
7272
needs: lint
7373
container:
74-
image: swift:6.2
74+
image: swift:6.2-jammy
7575
steps:
7676
- name: Install Git LFS
7777
run: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
cp -r .build/${{ matrix.build-path }}/exfig_FlutterExport.resources dist/
106106
cp -r .build/${{ matrix.build-path }}/exfig_WebExport.resources dist/
107107
cp LICENSE dist/
108-
tar -czf ${{ matrix.archive-name }}.tar.gz -C dist .
108+
cd dist && tar -czf ../${{ matrix.archive-name }}.tar.gz *
109109
110110
- name: Upload artifact
111111
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)