Actually install libidn in release workflow (#539) #3
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 | |
on: | |
push: | |
tags: | |
- addressable-* | |
jobs: | |
release: | |
if: github.repository == 'sporkmonger/addressable' | |
runs-on: ubuntu-22.04 | |
permissions: | |
id-token: write # for trusted publishing | |
steps: | |
# tags are named addressable-VERSION, e.g. addressable-2.8.6 | |
- name: Set VERSION from git tag | |
run: echo "VERSION=$(echo ${{ github.ref }} | cut -d - -f 2)" >> "$GITHUB_ENV" | |
- name: Install libidn | |
run: sudo apt-get install libidn11-dev | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
ruby-version: ruby | |
- uses: rubygems/[email protected] | |
# ensure gem can be built and installed | |
- run: bundle exec rake gem:install | |
# push gem to rubygems.org | |
- run: gem push --verbose pkg/addressable-${VERSION}.gem |