diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml new file mode 100644 index 0000000..5d62e9c --- /dev/null +++ b/.forgejo/workflows/test.yml @@ -0,0 +1,27 @@ +on: + push + +jobs: + test: + runs-on: [ debian ] + steps: + - uses: https://source.mapcomplete.org/actions/checkout@v4 + + - name: Print root directory + shell: bash + run: ls / + + - name: create dummy file + run: | + date > date.txt + + - name: push + run: | + git pull + git config user.name "Android file update bot" + git config user.email "info@mapcomplete.org" + date > date.txt + git add date.txt + git commit -m "Add files for release ${{ github.ref_name }}" + git tag "${{ github.ref_name }}" + git push source --verbose --follow-tags