Release version 0.1.0 #45
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: CI | |
on: | |
- push | |
- pull_request | |
jobs: | |
test: | |
name: Test on nginx ${{ matrix.nginx }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
nginx: | |
- 1.22.x | |
- 1.24.x | |
- 1.25.x | |
steps: | |
- uses: actions/checkout@v4 | |
- run: make deps | |
- run: make build | |
- run: make test NGINX_VERSION=${{ matrix.nginx }} | |
- run: make lint | |
- uses: actions/upload-artifact@v4 | |
# Run only in the first job. | |
if: strategy.job-index == 0 | |
with: | |
path: dist/* | |
if-no-files-found: error | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
if: startsWith(github.ref, 'refs/tags/v') && github.event_name != 'pull_request' | |
needs: | |
- test | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- run: make deps | |
- run: make build | |
- name: Create tarball | |
run: | | |
VERSION=${GITHUB_REF##*/} | |
make tarball VERSION=${VERSION#v} | |
- name: Upload tarball to Releases | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
dist/*.tar.gz | |
dist/*.tar.gz.sha256 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |