File tree 3 files changed +36
-9
lines changed
3 files changed +36
-9
lines changed Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ branches :
4
+ - master
5
+
6
+ jobs :
7
+ environment :
8
+ name : Publish imgtool releases
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : actions/checkout@v2
12
+ with :
13
+ fetch-depth : 0
14
+ - name : Install publishing packages
15
+ run : |
16
+ export PATH="$HOME/.local/bin:$PATH"
17
+ ./ci/imgtool_install.sh
18
+ - name : Publish imgtool
19
+ env :
20
+ TWINE_TOKEN : ${{ secrets.TWINE_TOKEN }}
21
+ run : |
22
+ export PATH="$HOME/.local/bin:$PATH"
23
+ ./ci/imgtool_run.sh
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- if [[ $TRAVIS_PULL_REQUEST != " false" || $TRAVIS_BRANCH != " master" ]]; then
16
- echo " Either a PR or not \" master\" branch, exiting"
17
- exit 0
15
+ if [[ $TRAVIS == " true" ]]; then
16
+ if [[ $TRAVIS_PULL_REQUEST != " false" || $TRAVIS_BRANCH != " master" ]]; then
17
+ echo " Either a PR or not \" master\" branch, exiting"
18
+ exit 0
19
+ fi
18
20
fi
19
21
20
22
pip3 install setuptools twine packaging
21
- pip3 install --pre imgtool
23
+ pip3 install --pre imgtool --no-binary :all:
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- if [[ $TRAVIS_PULL_REQUEST != " false" || $TRAVIS_BRANCH != " master" ]]; then
16
- echo " Either a PR or not \" master\" branch, exiting"
17
- exit 0
15
+ if [[ $TRAVIS == " true" ]]; then
16
+ if [[ $TRAVIS_PULL_REQUEST != " false" || $TRAVIS_BRANCH != " master" ]]; then
17
+ echo " Either a PR or not \" master\" branch, exiting"
18
+ exit 0
19
+ fi
18
20
fi
19
21
20
22
IMGTOOL_VER_PREFIX=" \+imgtool_version = "
21
23
IMGTOOL_VER_FILE=" imgtool/__init__.py"
22
24
DIST_DIR=" dist"
23
25
24
26
if [[ -z " $TWINE_TOKEN " ]]; then
25
- echo " \$ TWINE_TOKEN must be set in travis settings"
27
+ echo " \$ TWINE_TOKEN must be set in Travis or GH settings"
26
28
exit 0
27
29
fi
28
30
29
31
cd scripts/
30
32
31
- last_release=$( pip show imgtool | grep " Version: " | cut -d" " -f2)
33
+ last_release=$( pip3 show imgtool | grep " Version: " | cut -d" " -f2)
32
34
repo_version=$( grep " imgtool_version = " imgtool/__init__.py | sed ' s/^.* = "\(.*\)"/\1/g' )
33
35
34
36
python3 ../ci/compare_versions.py --old $last_release --new $repo_version
You can’t perform that action at this time.
0 commit comments