chore(deps): update dependency diff to v6 (#423) #105
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
--- | |
# | |
# Documentation: | |
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
# | |
####################################### | |
# Start the job on all push to master # | |
####################################### | |
name: 'Build & Deploy - Beta' | |
on: | |
push: | |
branches: | |
- main | |
- master | |
permissions: read-all | |
concurrency: | |
group: ${{ github.ref_name }}-${{ github.workflow }} | |
cancel-in-progress: true | |
############### | |
# Set the Job # | |
############### | |
jobs: | |
# Deploy to NPM | |
deploy_to_npm: | |
name: Deploy to NPM (beta) | |
runs-on: ubuntu-latest | |
permissions: read-all | |
environment: | |
name: beta | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
node-version: "20.x" | |
registry-url: "https://registry.npmjs.org" | |
scope: nvuillam | |
- run: npm ci | |
- run: | | |
git config --global user.name nvuillam | |
git config --global user.email [email protected] | |
- run: BETAID=$(date '+%Y%m%d%H%M') && npm version prerelease --preid="beta$BETAID" | |
shell: bash | |
- run: npm publish --tag beta | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
# Build & push docker image (beta) | |
build_push_docker: | |
name: Build & Push Docker image (beta) | |
needs: deploy_to_npm | |
runs-on: ubuntu-latest | |
permissions: read-all | |
environment: | |
name: beta | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Get current date | |
run: echo "BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> ${GITHUB_ENV} | |
- name: Build & Push Docker Image | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: Dockerfile | |
platforms: linux/amd64 | |
build-args: | | |
BUILD_DATE=${{ env.BUILD_DATE }} | |
BUILD_REVISION=${{ github.sha }} | |
BUILD_VERSION=beta | |
NPM_GROOVY_LINT_VERSION=beta | |
load: false | |
push: true | |
tags: | | |
nvuillam/npm-groovy-lint:beta |