Skip to content

Commit

Permalink
#474 yamls fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
davvd committed Jul 15, 2024
1 parent 4c4e276 commit 9af0a18
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# SOFTWARE.
---
name: codecov
on:
'on':
push:
branches:
- master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pdd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# SOFTWARE.
---
name: pdd
on:
'on':
push:
branches:
- master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# SOFTWARE.
---
name: rake
on:
'on':
push:
branches:
- master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/xcop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# SOFTWARE.
---
name: xcop
on:
'on':
push:
pull_request:
jobs:
Expand Down
10 changes: 8 additions & 2 deletions .rultor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ release:
mkdir ~/.ssh
mv ../id_rsa ../id_rsa.pub ~/.ssh
chmod -R 600 ~/.ssh/*
echo -e "Host *\n StrictHostKeyChecking no\n UserKnownHostsFile=/dev/null" > ~/.ssh/config
cat <<EOF
Host *
StrictHostKeyChecking no
UserKnownHostsFile=/dev/null
EOF > ~/.ssh/config
git fetch
sed -i "s/0\.0\.0/${tag}/g" ./version.rb
release=$(git rev-parse --short HEAD)
Expand All @@ -60,7 +64,9 @@ release:
rm -rf target/pgsql-config.yml
bundle exec rake liquibase
rm -rf config.yml
curl -f --connect-timeout 15 --retry 5 --retry-delay 30 https://wts.zold.io > /dev/null
curl -f --connect-timeout 15 \
--retry 5 --retry-delay 30 \
https://wts.zold.io > /dev/null
merge:
script: |-
bundle exec rake --quiet

0 comments on commit 9af0a18

Please sign in to comment.