2020-11-10 21:36:42 +08:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2021-01-13 22:13:15 +08:00
|
|
|
- v*-branch
|
2020-11-10 21:36:42 +08:00
|
|
|
|
2020-11-12 21:45:07 +08:00
|
|
|
name: imgtool
|
|
|
|
|
2020-11-10 21:36:42 +08:00
|
|
|
jobs:
|
|
|
|
environment:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2021-02-12 06:30:55 +08:00
|
|
|
- name: Cache pip
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.cache/pip
|
|
|
|
key: ${{ runner.os }}-pip
|
2020-11-12 21:45:07 +08:00
|
|
|
- name: Install packages
|
2020-11-10 21:36:42 +08:00
|
|
|
run: |
|
|
|
|
export PATH="$HOME/.local/bin:$PATH"
|
|
|
|
./ci/imgtool_install.sh
|
2020-11-12 21:45:07 +08:00
|
|
|
- name: Publish
|
2020-11-10 21:36:42 +08:00
|
|
|
env:
|
|
|
|
TWINE_TOKEN: ${{ secrets.TWINE_TOKEN }}
|
|
|
|
run: |
|
|
|
|
export PATH="$HOME/.local/bin:$PATH"
|
|
|
|
./ci/imgtool_run.sh
|