Skip to content

Commit

Permalink
Updating name for build
Browse files Browse the repository at this point in the history
  • Loading branch information
akadlec committed Aug 11, 2021
1 parent 55a60e0 commit 28477d4
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ jobs:
run: "yarn lint:ts"

js-build:
name: "Build JS library"
name: "Build JS distribution"
runs-on: "${{ matrix.operating-system }}"
needs: ["jslint", "tslint"]

Expand Down Expand Up @@ -391,7 +391,7 @@ jobs:
path: dist

publish-npmjs:
name: "Build JS library and publish it to NPM"
name: "Publish JS distribution to NPM"
runs-on: "${{ matrix.operating-system }}"
needs: "js-build"

Expand Down Expand Up @@ -430,7 +430,7 @@ jobs:
run: "npm publish --access public"

publish-github:
name: "Build JS library and publish it to Github packages"
name: "Publish JS distribution to Github packages"
runs-on: "${{ matrix.operating-system }}"
needs: "publish-npmjs"

Expand Down Expand Up @@ -469,7 +469,7 @@ jobs:
run: "npm publish --access public"

build-python:
name: "Build python distribution"
name: "Build Python distribution"
runs-on: "${{ matrix.operating-system }}"

strategy:
Expand Down Expand Up @@ -506,11 +506,11 @@ jobs:
- name: "Upload build result"
uses: "actions/upload-artifact@v1"
with:
name: dist
name: python-dist
path: dist

test-install-python:
name: "Test installation for Python code"
name: "Test installation of Python distribution"
runs-on: "${{ matrix.operating-system }}"
needs: "build-python"

Expand All @@ -524,7 +524,7 @@ jobs:
- name: "Download build result"
uses: "actions/download-artifact@v1"
with:
name: dist
name: python-dist
path: dist

- name: "Set up Python ${{ matrix.python }}"
Expand All @@ -541,7 +541,7 @@ jobs:
run: "pip install dist/fastybird-devices-module-*.tar.gz"

publish-on-testpypi:
name: "Publish Python package on TestPyPI"
name: "Publish Python distribution on Test PyPI"
runs-on: "${{ matrix.operating-system }}"
needs: "test-install-python"

Expand All @@ -555,7 +555,7 @@ jobs:
- name: "Download build result"
uses: "actions/download-artifact@v1"
with:
name: dist
name: python-dist
path: dist

- name: "Publish to index"
Expand All @@ -565,7 +565,7 @@ jobs:
repository_url: "https://test.pypi.org/legacy/"

publish-on-pypi:
name: "Publish Python package to PyPI"
name: "Publish Python distribution to PyPI"
runs-on: "${{ matrix.operating-system }}"
needs: "publish-on-testpypi"

Expand All @@ -579,7 +579,7 @@ jobs:
- name: "Download build result"
uses: "actions/download-artifact@v1"
with:
name: dist
name: python-dist
path: dist

- name: "Publish to index"
Expand Down

0 comments on commit 28477d4

Please sign in to comment.