Skip to content

Commit

Permalink
Missing template around cd.yml secret. (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeMan99 authored Nov 28, 2023
1 parent 1af92ab commit ce66987
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions template/.github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ on:
jobs:
{% if crate_type == "bin" %}
publish:
name: Publishing for {{ "${{ matrix.job.os " }}}}
runs-on: {{ "${{ matrix.job.os " }}}}
name: Publishing for {{ "${{ matrix.job.os }}" }}
runs-on: {{ "${{ matrix.job.os }}" }}
strategy:
matrix:
rust: [stable]
Expand Down Expand Up @@ -57,46 +57,46 @@ jobs:
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: {{ "${{ matrix.rust " }}}}
target: {{ "${{ matrix.job.target " }}}}
toolchain: {{ "${{ matrix.rust }}" }}
target: {{ "${{ matrix.job.target }}" }}
profile: minimal
override: true
- uses: Swatinem/rust-cache@v2
- name: Cargo build
uses: actions-rs/cargo@v1
with:
command: build
use-cross: {{ "${{ matrix.job.use-cross " }}}}
toolchain: {{ "${{ matrix.rust " }}}}
args: --release --target {{ "${{ matrix.job.target " }}}}
use-cross: {{ "${{ matrix.job.use-cross }}" }}
toolchain: {{ "${{ matrix.rust }}" }}
args: --release --target {{ "${{ matrix.job.target }}" }}

- name: install strip command
shell: bash
run: |
if [[ {{ "${{ matrix.job.target " }}}} == aarch64-unknown-linux-gnu ]]; then
if [[ {{ "${{ matrix.job.target }}" }} == aarch64-unknown-linux-gnu ]]; then
sudo apt update
sudo apt-get install -y binutils-aarch64-linux-gnu
fi
- name: Packaging final binary
shell: bash
run: |
cd target/{{ "${{ matrix.job.target " }}}}/release
cd target/{{ "${{ matrix.job.target }}" }}/release
####### reduce binary size by removing debug symbols #######
BINARY_NAME={{project-name}}{{ "${{ matrix.job.binary-postfix " }}}}
if [[ {{ "${{ matrix.job.target " }}}} == aarch64-unknown-linux-gnu ]]; then
BINARY_NAME={{project-name}}{{ "${{ matrix.job.binary-postfix }}" }}
if [[ {{ "${{ matrix.job.target }}" }} == aarch64-unknown-linux-gnu ]]; then
GCC_PREFIX="aarch64-linux-gnu-"
else
GCC_PREFIX=""
fi
"$GCC_PREFIX"strip $BINARY_NAME
########## create tar.gz ##########
RELEASE_NAME={{project-name}}-${GITHUB_REF/refs\/tags\//}-{{ "${{ matrix.job.os-name " }}}}-{{ "${{ matrix.job.architecture " }}}}
RELEASE_NAME={{project-name}}-${GITHUB_REF/refs\/tags\//}-{{ "${{ matrix.job.os-name }}" }}-{{ "${{ matrix.job.architecture }}" }}
tar czvf $RELEASE_NAME.tar.gz $BINARY_NAME
########## create sha256 ##########
if [[ {{ "${{ runner.os " }}}} == 'Windows' ]]; then
if [[ {{ "${{ runner.os }}" }} == 'Windows' ]]; then
certutil -hashfile $RELEASE_NAME.tar.gz sha256 | grep -E [A-Fa-f0-9]{64} > $RELEASE_NAME.sha256
else
shasum -a 256 $RELEASE_NAME.tar.gz > $RELEASE_NAME.sha256
Expand All @@ -105,10 +105,10 @@ jobs:
uses: softprops/action-gh-release@v1
with:
files: |
target/{{ "${{ matrix.job.target " }}}}/release/{{project-name}}-*.tar.gz
target/{{ "${{ matrix.job.target " }}}}/release/{{project-name}}-*.sha256
target/{{ "${{ matrix.job.target }}" }}/release/{{project-name}}-*.tar.gz
target/{{ "${{ matrix.job.target }}" }}/release/{{project-name}}-*.sha256
env:
GITHUB_TOKEN: {{ "${{ secrets.GITHUB_TOKEN " }}}}
GITHUB_TOKEN: {{ "${{ secrets.GITHUB_TOKEN }}" }}
{% endif %}
publish-cargo:
name: Publishing to Cargo
Expand All @@ -121,4 +121,4 @@ jobs:
- uses: Swatinem/rust-cache@v2
- run: cargo publish
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
CARGO_REGISTRY_TOKEN: {{ "${{ secrets.CARGO_REGISTRY_TOKEN }}" }}

0 comments on commit ce66987

Please sign in to comment.