You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: OpenSC-Release-Howto.md
+10-46Lines changed: 10 additions & 46 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,6 @@ Release (or RC) version must be changed in the following files:
34
34
*`NEWS`: Make sure to fix the release date for final release!
35
35
*`VERSION.mk` : change package version major/minor/fix as needed, RCs get the package suffix `-rc`, which is removed for the final release
36
36
*`configure.ac` : Update the [LT version number](https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html), which is required with changes to, for example, `opensc.h` and `libopensc.exports`.
37
-
*`.appveyor.yml`: Update the version on first line
38
37
*`README.md`: Update the links to the new release and binaries
39
38
*`SECURITY.md`: Update supported version
40
39
@@ -133,56 +132,23 @@ Optionally, discuss changes to `NEWS` by opening a [new issue](https://github.co
133
132
134
133
2. Add commits with fixes
135
134
* Use git `cherry-pick -x` to pick commits from `master` to reference commit hashes
136
-
3. Remove suffixes from build names in`appveyor.yml` and `.github/build.sh` script
137
-
138
-
```diff
139
-
diff --git a/.appveyor.yml b/.appveyor.yml
140
-
index 4599100ad2..bca1775ae3 100644
141
-
--- a/.appveyor.yml
142
-
+++ b/.appveyor.yml
143
-
@@ -96,8 +96,7 @@ build_script:
144
-
}
145
-
- bash -c "exec 0</dev/null && if [ \"$APPVEYOR_REPO_BRANCH\" == \"master\" -a -z \"$APPVEYOR_PULL_REQUEST_NUMBER\" ]; then ./bootstrap; fi"
146
-
- bash -c "exec 0</dev/null && if [ \"$APPVEYOR_REPO_BRANCH\" == \"master\" -a -n \"$APPVEYOR_PULL_REQUEST_NUMBER\" ]; then ./bootstrap.ci -s \"-pr$APPVEYOR_PULL_REQUEST_NUMBER\"; fi"
147
-
- - bash -c "exec 0</dev/null && if [ \"$APPVEYOR_REPO_BRANCH\" != \"master\" -a -z \"$APPVEYOR_PULL_REQUEST_NUMBER\" ]; then ./bootstrap.ci -s \"-$APPVEYOR_REPO_BRANCH\"; fi"
148
-
- - bash -c "exec 0</dev/null && if [ \"$APPVEYOR_REPO_BRANCH\" != \"master\" -a -n \"$APPVEYOR_PULL_REQUEST_NUMBER\" ]; then ./bootstrap.ci -s \"-$APPVEYOR_REPO_BRANCH-prAPPVEYOR_PULL_REQUEST_NUMBER\"; fi"
149
-
+ - bash -c "exec 0</dev/null && if [ \"$APPVEYOR_REPO_BRANCH\" != \"master\" ]; then ./bootstrap; fi"
* When they expire, the new need tokens need to be generated in [user settings](https://github.com/settings/tokens?type=beta).
203
-
*Both tokens need _Read_ and _Write_ access to code and _Read_ access to metadata in OpenSC/Nightly repository.
167
+
* When it expires, the new token needs to be generated in [user settings](https://github.com/settings/tokens?type=beta).
168
+
*The token need _Read_ and _Write_ access to code and _Read_ access to metadata in OpenSC/Nightly repository.
204
169
* The Github Actions token needs to be inserted into the [OpenSC repository secrets](https://github.com/OpenSC/OpenSC/settings/secrets/actions).
205
-
* The AppVeyor token needs to be encrypted using [AppVeyor website](https://ci.appveyor.com/account/frankmorgner/tools/encrypt) and updated in the `.appveyor.yml`forexample like donein [#3230](https://github.com/OpenSC/OpenSC/pull/3230).
0 commit comments