test-push
This commit is contained in:
parent
6285473aa7
commit
947625402d
25
.github/workflows/test-push.yml
vendored
Normal file
25
.github/workflows/test-push.yml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
name: Test Push
|
||||
on: push
|
||||
jobs:
|
||||
foo:
|
||||
name: Foo
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
ref: ${{github.ref}}
|
||||
|
||||
- name: Foo
|
||||
shell: bash
|
||||
run: |
|
||||
echo "foo" >> foo.txt
|
||||
|
||||
- name: Push
|
||||
shell: bash
|
||||
run: |
|
||||
git config --global user.name "GitHub Actions"
|
||||
git config --global user.email "github-actions@hazelcast.com"
|
||||
git add foo.txt
|
||||
git commit -m "Foo"
|
||||
git push
|
Loading…
Reference in New Issue
Block a user