Support using http_set_header
and http_remove_header
as blocks
#24
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: | |
# Publish `1.2.3` tags as releases. | |
tags: | |
- "*" | |
env: | |
binnacle_version: $(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,') | |
jobs: | |
publish-artifacts: | |
name: Publish kadalu-binnacle | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Generate the Version | |
run: | | |
BINNACLE_VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,') make gen-version | |
- name: Publish gem | |
uses: dawidd6/action-publish-gem@v1 | |
with: | |
# Optional, will publish to RubyGems if specified | |
api_key: ${{secrets.RUBYGEMS_API_KEY}} | |
# Optional, will publish to GitHub Packages if specified | |
github_token: ${{secrets.GITHUB_TOKEN}} |