fix(resources): get all build resources (#811) #69
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
# SPDX-License-Identifier: Apache-2.0 | |
# name of the action | |
name: release | |
# trigger on push events with `v*` in tag | |
on: | |
push: | |
tags: | |
- 'v*' | |
# pipeline to execute | |
jobs: | |
release: | |
name: release tagged image | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | |
with: | |
path: ~/.elm | |
key: ${{ runner.os }}-elm-v3-${{ hashFiles('**/elm.json') }} | |
restore-keys: | | |
${{ runner.os }}-elm-v3- | |
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-npm-v2-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-npm-v2- | |
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-modules-v2-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-modules-v2- | |
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version-file: '.nvmrc' | |
# ┌┐ ┬ ┬┬┬ ┌┬┐ | |
# ├┴┐│ │││ ││ | |
# └─┘└─┘┴┴─┘─┴┘ | |
- name: install dependencies | |
run: npm ci --prefer-offline --no-audit | |
- name: run production build | |
run: npm run build:prod | |
# ┌┬┐┌─┐┌─┐┬┌─┌─┐┬─┐ | |
# │││ ││ ├┴┐├┤ ├┬┘ | |
# ─┴┘└─┘└─┘┴ ┴└─┘┴└─ | |
- name: push to docker | |
uses: elgohr/Publish-Docker-Github-Action@eb53b3ec07136a6ebaed78d8135806da64f7c7e2 # v5 | |
with: | |
name: target/vela-ui | |
cache: true | |
tag_names: true | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} |