Skip to content

Commit

Permalink
Merge pull request #4 from kfit-dev/chore/FAVE-37047-reset-to-upstream
Browse files Browse the repository at this point in the history
Chore/FAVE-37047 Switch to New Domain Names Due to The Alipay+ Network Upgrade
  • Loading branch information
zhenghui97 authored May 23, 2024
2 parents 63959f8 + d15850e commit d9ab197
Show file tree
Hide file tree
Showing 32 changed files with 2,881 additions and 1,011 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release

on:
release:
types: [published]

jobs:
build_and_push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
bundler-cache: true
- run: bundle exec rake
- name: Publish to RubyGems
run: |
mkdir -p $HOME/.gem
touch $HOME/.gem/credentials
chmod 0600 $HOME/.gem/credentials
printf -- "---\n:rubygems_api_key: ${RUBYGEMS_API_KEY}\n" > $HOME/.gem/credentials
gem build *.gemspec
gem push *.gem
env:
RUBYGEMS_API_KEY: "${{secrets.RUBYGEMS_API_KEY}}"
19 changes: 19 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Test

on: [push, pull_request]

jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
ruby: ['3.0', '3.1', '3.2']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle exec rake
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ Gemfile.lock
InstalledFiles
_yardoc
coverage
doc/
lib/bundler/man
pkg
rdoc
spec/reports
test/tmp
test/version_tmp
tmp
config.yml
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: ruby
rvm:
- 2.3.0
- 2.2.4
- 2.1.8
- 2.5.1
- 2.4.4
- 2.3.6
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
## master

Newer release changelog, see https://github.com/chloerei/alipay/releases

## v0.16.0 (2020-05-15)

- Support certificate signature, thanks @moohao #92

## v0.15.2 (2019-08-02)

- page_execute_form invalid-signature charset, thanks @lingceng #90

## v0.15.1 (2018-06-16)

- Add `partner` and `seller_id` options for legacy API, thanks @KQyongzhang #83

## v0.15.0 (2017-08-27)

- Add `Alipay::Client` for open API.
- Stop adding new feature to Alipay::Service, Alipay::App::Service, Alipay::Wap::Service, Alipay::Mobile::Service.

## v0.14.0 (2016-12-28)

- Add `Alipay::App::Service.create_forex_trade_wap_url` method, thanks @xiaohesong #61
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2013 Rei
Copyright (c) 2017 Rei

MIT License

Expand Down
Loading

0 comments on commit d9ab197

Please sign in to comment.