rubysketch-solitaire 1.0 → 1.0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1059414d7ca15a74af2e758512fa602a749a541dd6e9001bc3dcf21165440c05
4
- data.tar.gz: fd476a43f423c134ad24bb465cdd58014b7d4a93070f9c9f7b9be4352355e4d2
3
+ metadata.gz: 6f7be17a8117a63e1a3e18cebb62f775b751a6043302029e196385f67c7affe4
4
+ data.tar.gz: 11cf320dc36304fe7422f15486830d7bc3d6263970aea73ce707a5382d62dddd
5
5
  SHA512:
6
- metadata.gz: fe140def59fe539d72943e581379782769ef031c00b13ac235ae2686575c35632c7c4929c04e90aad9030daf797f9ad6daf1f1dfce65d9625f5f0c0fa14ddbec
7
- data.tar.gz: 87f65df7fdff281bd900361709d80eb5a12dfe3c0445ead7010da3071e60162f99ab5ae74ac58e0229fd04a4f3221cafdf9b366558f2a79908a1041d7c10e7ac
6
+ metadata.gz: e606bcce6e8a67cb3272d947c398df6f16719c96a793bb0dc4796b0ff8d274dd2dae67406d597b68466e756b30feaa58ebb3fe28a8dfb225a8b27c99f655dfd3
7
+ data.tar.gz: 575f5b1dbe31c2d7bce29b9bbaff6faef1179c4573db3da91bcac0d714352f10c070dfebb30c2980afe2432d0b8fb666e5dba4006b670a878274d52f44c3c9b1
@@ -0,0 +1,46 @@
1
+ name: Release iOS
2
+
3
+ on:
4
+ push:
5
+ tags: ['v[0-9]*']
6
+
7
+ jobs:
8
+ push-to-cd:
9
+ if: github.repository == 'xord/solitaire'
10
+
11
+ runs-on: ubuntu-latest
12
+
13
+ steps:
14
+ - name: checkout
15
+ uses: actions/checkout@v2
16
+ with:
17
+ fetch-depth: 0
18
+ token: ${{ secrets.PAT }}
19
+
20
+ - name: push to repository for continuous delivery
21
+ run: |
22
+ git remote add cd https://github.com/xord/solitaire_cd
23
+ git push cd master --tags
24
+
25
+ testflight:
26
+ if: github.repository == 'xord/solitaire_cd'
27
+
28
+ runs-on: macos-latest
29
+
30
+ steps:
31
+ - name: ruby 3.2
32
+ uses: ruby/setup-ruby@v1
33
+ with:
34
+ ruby-version: 3.2
35
+
36
+ - name: checkout
37
+ uses: actions/checkout@v2
38
+
39
+ - name: setup dependencies
40
+ run: "ruby -I.github/workflows -rutils -e 'setup_dependencies'"
41
+
42
+ - name: create config file
43
+ run: echo '${{ secrets.CONFIG }}' | base64 -d > config.yml
44
+
45
+ - name: upload to testflight
46
+ run: rake release:testflight
data/ChangeLog.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # RubySolitaire ChangeLog
2
2
 
3
3
 
4
+ ## [v1.0.0.1] - 2023-06-21
5
+
6
+ - [en]Automate to upload to TestFlight
7
+ - [ja]TestFlight へのアップロードを自動化
8
+
9
+
4
10
  ## [v1.0] - 2023-06-21
5
11
 
6
12
  - [en]First public version
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0
1
+ 1.0.0.1
@@ -1 +1 @@
1
- - First public version
1
+ - Automate to upload to TestFlight
@@ -1 +1 @@
1
- - 最初の正式公開バージョン
1
+ - TestFlight へのアップロードを自動化
data/project.yml CHANGED
@@ -16,8 +16,8 @@ settingGroups:
16
16
 
17
17
  settings:
18
18
  base:
19
- MARKETING_VERSION: 1.0
20
- CURRENT_PROJECT_VERSION: 1.0
19
+ MARKETING_VERSION: 1.0.0
20
+ CURRENT_PROJECT_VERSION: 1.0.0.1
21
21
  DEVELOPMENT_TEAM: $(TEAM_ID)
22
22
  configs:
23
23
  debug:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubysketch-solitaire
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.0'
4
+ version: 1.0.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - xordog
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-20 00:00:00.000000000 Z
11
+ date: 2023-06-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: xot
@@ -60,6 +60,7 @@ extra_rdoc_files: []
60
60
  files:
61
61
  - ".bundle/config"
62
62
  - ".github/workflows/release-gem.yml"
63
+ - ".github/workflows/release-ios.yml"
63
64
  - ".github/workflows/test.yml"
64
65
  - ".github/workflows/utils.rb"
65
66
  - ".gitignore"