Build Apps.zip #37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Apps.zip | |
on: | |
# Triggers the workflow on push or pull request events but only for the "master" branch | |
push: | |
branches: [ "master" ] | |
paths: | |
- apps/** | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# delete old apps.zip | |
- name: Remove File | |
uses: JesseTG/[email protected] | |
with: | |
path: /apps.zip | |
# zip the apps | |
- name: Install zip | |
uses: montudor/action-zip@v1 | |
- name: Zip output | |
run: zip -r ../apps.zip * | |
working-directory: Apps | |
# Commits the updated apps.zip | |
- name: check for changes | |
run: git status | |
- name: set username | |
run: git config user.name "Automated" | |
- name: set email | |
run: git config user.email "[email protected]" | |
- name: stage changed files | |
run: git add . | |
- name: commit changed files | |
run: git commit -m "Auto repo.json" | |
- name: fetch from master | |
run: git fetch origin master | |
- name: push code to master | |
run: git push origin HEAD:master |