Fix CI, upgrade actions/* version. (#220) #44
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Release Crate & RubyGem" | |
on: | |
push: | |
tags: | |
- "v*" | |
branches: | |
- release-gem | |
jobs: | |
publish_crate: | |
name: Publish Crate | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/cargo@v1 | |
if: startsWith(github.ref, 'refs/tags/v') | |
name: Release Crate | |
with: | |
command: publish | |
args: --manifest-path autocorrect/Cargo.toml --token ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
build: | |
needs: | |
- publish_crate | |
name: Build compile gems | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby-platform: | |
- arm64-darwin | |
- x86_64-darwin | |
- x86_64-linux | |
- aarch64-linux | |
- x86_64-linux-musl | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oxidize-rb/actions/setup-ruby-and-rust@v1.1.9 | |
with: | |
ruby-version: "3.3" | |
bundler-cache: true | |
cargo-cache: true | |
cargo-vendor: false | |
- name: Touch Rakefile | |
run: | | |
touch Rakefile | |
- uses: oxidize-rb/actions/cross-gem@v1.1.9 | |
with: | |
platform: ${{ matrix.ruby-platform }} | |
working-directory: autocorrect-rb/ | |
ruby-versions: "3.3, 3.2, 3.1" # optional | |
- name: Upload Gem | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cross-gem | |
path: autocorrect-rb/pkg/ | |
build_source: | |
name: Build source gem | |
needs: | |
- publish_crate | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oxidize-rb/actions/setup-ruby-and-rust@v1.1.9 | |
with: | |
ruby-version: "3.3" | |
bundler-cache: false | |
cargo-cache: true | |
cargo-vendor: true | |
- name: Build gem | |
run: | | |
cd autocorrect-rb/ | |
gem build autocorrect-rb.gemspec | |
mkdir -p pkg/ | |
mv *.gem pkg/ | |
- name: Upload Gem | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cross-gem | |
path: autocorrect-rb/pkg/ | |
publish: | |
name: Publish cross gems | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
- build_source | |
steps: | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.3" | |
bundler-cache: true | |
- uses: actions/download-artifact@v3 | |
with: | |
name: cross-gem | |
path: pkg/ | |
- name: Display structure of built gems | |
run: ls -R | |
working-directory: pkg/ | |
- name: Publish to RubyGem | |
env: | |
RUBYGEM_TOKEN: "${{secrets.RUBYGEM_TOKEN}}" | |
working-directory: pkg/ | |
run: | | |
mkdir -p $HOME/.gem | |
touch $HOME/.gem/credentials | |
chmod 0600 $HOME/.gem/credentials | |
printf -- "---\n:rubygems_api_key: ${RUBYGEM_TOKEN}\n" > $HOME/.gem/credentials | |
for filename in *.gem; do | |
echo $filename | |
gem push $filename | |
done | |
- name: Install RubyGem & Test Run | |
run: | | |
gem install autocorrect-rb --verbose | |
ruby -e "require 'autocorrect-rb'; puts AutoCorrect.format('Hello你好.');" |