This repository has been archived by the owner on Oct 1, 2024. It is now read-only.
Update nginx:1.27.0-alpine Docker digest to 208b70e #4390
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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
ci: | |
name: CI | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: pre-commit | |
uses: markushinz/actions/pre-commit@v1.1.10 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4.0.3 | |
with: | |
node-version: 16 | |
- name: Version | |
uses: markushinz/actions/version@v1.1.10 | |
with: | |
minimum_version_command: cat version.txt | |
- name: Lint, Test, Build and Pack | |
run: | | |
npm version --git-tag-version=false "$VERSION" | |
npm ci | |
npm run lint | |
npm run test | |
npm run build | |
npm pack | |
mv "socket-gateway-${VERSION}.tgz" socket-gateway.tgz | |
- name: SonarCloud Scan | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
uses: SonarSource/sonarcloud-github-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
- name: Docker - Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Docker - Set up Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Docker - Login | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Docker - Build and Push | |
uses: docker/build-push-action@v6 | |
with: | |
push: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
platforms: | | |
linux/amd64 | |
linux/arm64 | |
tags: | | |
${{ github.repository }}:latest | |
${{ github.repository }}:v${{ env.VERSION }} | |
cache-from: type=registry,ref=${{ github.repository }}:buildcache | |
cache-to: type=registry,ref=${{ github.repository }}:buildcache,mode=max | |
- name: Release | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
run: GITHUB_TOKEN="${{ secrets.GITHUB_TOKEN }}" gh release create "v${VERSION}" --generate-notes ./socket-gateway.tgz |