Skip to content

Commit

Permalink
Setup versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
codynhat committed Aug 21, 2023
1 parent 2e8a955 commit 771819a
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: "Bump iOS Version"
on:
push:
branches: [main]
jobs:
tests:
name: "Bump Version"
runs-on: ubuntu-latest
needs: []
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: yanamura/ios-bump-version@v1
with:
version: 1.1.0
- name: update
run: |
git add .
git commit -m "bump version"
git push origin HEAD
4 changes: 4 additions & 0 deletions GeoWebiOS.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,7 @@
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
};
name = Debug;
};
Expand Down Expand Up @@ -558,6 +559,7 @@
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
};
name = Release;
};
Expand Down Expand Up @@ -711,6 +713,7 @@
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = 1;
VERSIONING_SYSTEM = "apple-generic";
};
name = Debug;
};
Expand Down Expand Up @@ -745,6 +748,7 @@
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = 1;
VERSIONING_SYSTEM = "apple-generic";
};
name = Release;
};
Expand Down

0 comments on commit 771819a

Please sign in to comment.