Update nginx stability tag to 5.46.5 #2166
This file contains hidden or 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: Run tests | |
| on: | |
| push: | |
| branches: | |
| - master | |
| tags: | |
| - '*' | |
| pull_request: | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| drupal_ver: [ 11,10 ] | |
| php_ver: [ '8.5','8.4','8.3','8.2','8.1' ] | |
| exclude: | |
| - drupal_ver: 11 | |
| php_ver: '8.2' | |
| - drupal_ver: 11 | |
| php_ver: '8.1' | |
| - drupal_ver: 10 | |
| php_ver: '8.5' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: test | |
| env: | |
| DRUPAL_VER: ${{ matrix.drupal_ver }} | |
| PHP_VER: ${{ matrix.php_ver }} | |
| run: make test | |
| test-cms: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: test | |
| run: make test-cms | |
| release: | |
| runs-on: ubuntu-latest | |
| if: startsWith(github.ref, 'refs/tags/') | |
| needs: [test,test-cms] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: prepare artifact | |
| run: cp docker.mk Makefile && tar -czf docker4drupal.tar.gz compose.yml compose.override.yml Makefile .env traefik.yml | |
| - name: get tag name | |
| id: vars | |
| run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} | |
| - uses: xresloader/upload-to-github-release@v1 | |
| id: upload_artifact | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| file: docker4drupal.tar.gz | |
| overwrite: true | |
| tags: true | |
| draft: false | |
| tag_name: ${{ steps.vars.outputs.tag }} |