Prometheus with default metrics #28
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: Build and Release | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
inputs: | |
version: | |
type: string | |
description: 'Version to release' | |
required: false | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
show-progress: false | |
- name: Configure Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install Dependencies | |
run: npm ci | |
- name: JavaScript Standard Style | |
run: npm run standard | |
release: | |
needs: build | |
runs-on: ubuntu-latest | |
if: ${{ inputs.version != '' && github.ref == 'refs/heads/main' }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
show-progress: false | |
- name: Configure Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
registry-url: https://registry.npmjs.org/ | |
- name: Configure GIT | |
run: | | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
git config --global user.name "github-actions[bot]" | |
- name: Release | |
id: version | |
run: | | |
VERSION=`npm version ${{ github.event.inputs.version }}` | |
VERSION=${VERSION:1} | |
echo "VERSION=$VERSION" >> "$GITHUB_OUTPUT" | |
- name: Publish NPM | |
run: | | |
npm set //registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN | |
npm publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_TOKEN}} | |
- name: Prepare docker | |
run: | | |
rm -rf node_modules | |
npm ci --only=production | |
echo ${{ secrets.DOCKERHUB_TOKEN }} | docker login -u ${{ secrets.DOCKERHUB_USER }} --password-stdin | |
- name: Docker build | |
run: | | |
docker build -t juuu/emusk:latest -t juuu/emusk:${{ steps.version.outputs.VERSION }} . | |
docker push juuu/emusk:latest | |
docker push juuu/emusk:${{ steps.version.outputs.VERSION }} | |
- name: Prepare RC | |
run: npm version prerelease --preid=rc | |
- name: Publish RC | |
run: | | |
npm set //registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN | |
npm publish --access public --tag rc | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_TOKEN}} | |
- name: Push changes | |
run: git push --follow-tags | |
- name: Create Release | |
uses: ncipollo/release-action@v1 | |
with: | |
generateReleaseNotes: true | |
tag: v${{ steps.version.outputs.VERSION }} |