Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jbdesbas authored Dec 20, 2023
1 parent 5c4f12e commit 1645732
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,15 @@
- name: Extract files from QGZ
run: 7z x geo2france.qgz -o./uncompressed
on: push

jobs:
unzip:
runs-on: ubuntu-latest
steps:
- name: Extract files from QGZ
run: 7z x geo2france.qgz -o./uncompressed
- name: Commit changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add ./uncompressed
git commit -m "Decompress file"
git push

0 comments on commit 1645732

Please sign in to comment.