Skip to content

Commit 2c3b272

Browse files
authored
Merge pull request #26 from noha/adjust-github-actions
Adjusted README and github actions to reflect current state
2 parents 7f7c820 + 7d05244 commit 2c3b272

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
push:
1313
branches:
14-
- development
14+
- master
1515
- pharo9-openssl1.1
1616
- pharo10-openssl1.1
1717

@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
smalltalk: [ Pharo64-11, Pharo64-10, Pharo64-9.0 ]
23+
smalltalk: [ Pharo64-12, Pharo64-11, Pharo64-10, Pharo64-9.0 ]
2424
name: ${{ matrix.smalltalk }}
2525
steps:
2626
- uses: actions/checkout@v2

README.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,30 @@ Implementation of a JSON web token following [RFC 7519](https://tools.ietf.org/h
88

99
## Installation
1010

11-
For pharo9 and above use
11+
For pharo11 and above use
1212

1313
```Smalltalk
1414
Metacello new
1515
baseline:'JSONWebToken';
16-
repository: 'github://noha/JSONWebToken:pharo9-openssl1.1/source';
16+
repository: 'github://noha/JSONWebToken:master/source';
1717
load
1818
```
1919

20-
For pharo8 and below use
20+
For pharo10 and above use
2121

2222
```Smalltalk
2323
Metacello new
2424
baseline:'JSONWebToken';
25-
repository: 'github://noha/JSONWebToken:master/source';
25+
repository: 'github://noha/JSONWebToken:pharo10-openssl1.1/source';
26+
load
27+
```
28+
29+
For pharo9 and above use
30+
31+
```Smalltalk
32+
Metacello new
33+
baseline:'JSONWebToken';
34+
repository: 'github://noha/JSONWebToken:pharo9-openssl1.1/source';
2635
load
2736
```
2837

0 commit comments

Comments
 (0)