summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorsharkdp <davidpeter@web.de>2020-08-02 16:04:36 +0200
committerDavid Peter <sharkdp@users.noreply.github.com>2020-08-02 21:51:23 +0200
commit42de486e940a2b5db27dfd525e0fca4d7e11137b (patch)
treed5c33d6f26815cd7541ba1465be983cbe7a60c2f /.github
parent54c9d7cdb2258a90a6d3e3d1d283ce802a475ad0 (diff)
Adapt job step names
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/CICD.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml
index 3885f893..c6cb973f 100644
--- a/.github/workflows/CICD.yml
+++ b/.github/workflows/CICD.yml
@@ -46,8 +46,9 @@ jobs:
# - { os: windows-latest , target: x86_64-pc-windows-gnu } ## disabled; linker errors (missing '_imp____acrt_iob_func')
- { os: windows-latest , target: x86_64-pc-windows-msvc }
steps:
- - uses: actions/checkout@v1
- - name: Install any prerequisites
+ - name: Git checkout
+ uses: actions/checkout@v1
+ - name: Install prerequisites
shell: bash
run: |
case ${{ matrix.job.target }} in
@@ -160,7 +161,7 @@ jobs:
mkdir -p '${{ steps.vars.outputs.STAGING }}'
mkdir -p '${{ steps.vars.outputs.STAGING }}/${{ steps.vars.outputs.PKG_BASENAME }}'
mkdir -p '${{ steps.vars.outputs.STAGING }}/dpkg'
- - name: rust toolchain ~ install
+ - name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ steps.vars.outputs.TOOLCHAIN }}
@@ -188,7 +189,7 @@ jobs:
use-cross: ${{ steps.vars.outputs.CARGO_USE_CROSS }}
command: test
args: --target=${{ matrix.job.target }} ${{ steps.vars.outputs.CARGO_TEST_OPTIONS}} ${{ matrix.job.cargo-options }}
- - name: Archive executable artifacts
+ - name: Upload build artifacts
uses: actions/upload-artifact@master
with:
name: ${{ env.PROJECT_NAME }}-${{ matrix.job.target }}
@@ -201,7 +202,6 @@ jobs:
# `strip` binary (if needed)
if [ -n "${{ steps.vars.outputs.STRIP }}" ]; then "${{ steps.vars.outputs.STRIP }}" '${{ steps.vars.outputs.STAGING }}/${{ steps.vars.outputs.PKG_BASENAME }}/${{ env.PROJECT_NAME }}${{ steps.vars.outputs.EXE_suffix }}' ; fi
# README and LICENSE
- # * spell-checker:ignore EADME ICENSE
(shopt -s nullglob; for f in [R]"EADME"{,.*}; do cp $f '${{ steps.vars.outputs.STAGING }}/${{ steps.vars.outputs.PKG_BASENAME }}/' ; done)
(shopt -s nullglob; for f in [L]"ICENSE"{-*,}{,.*}; do cp $f '${{ steps.vars.outputs.STAGING }}/${{ steps.vars.outputs.PKG_BASENAME }}/' ; done)
# base compressed package
@@ -226,7 +226,7 @@ jobs:
# build dpkg
fakeroot dpkg-deb --build "${DPKG_DIR}" "${{ steps.vars.outputs.STAGING }}/${{ steps.vars.outputs.DPKG_NAME }}"
fi
- - name: Publish
+ - name: Publish archives and packages
uses: softprops/action-gh-release@v1
if: steps.vars.outputs.DEPLOY
with: