Attempt to push
Some checks failed
/ test (push) Failing after 2s

This commit is contained in:
Pieter Vander Vennet 2025-06-17 13:32:39 +02:00
parent 036e3023ad
commit 0baadf9c61

View file

@ -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