Skip to content

chore: Roll action to 1.4.0 #824

chore: Roll action to 1.4.0

chore: Roll action to 1.4.0 #824

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
release:
types:
- created
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
with:
version: 10
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version-file: .nvmrc
cache: pnpm
- run: |
pnpm install
pnpm lint
pnpm test
pnpm check-types
- id: docker_meta
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
with:
images: docker.pkg.github.com/remarkable/githubUserManager/githubUserManager
tags: |
type=sha
type=semver,pattern=v{{version}}
labels: |
org.opencontainers.image.vendor=reMarkable
org.opencontainers.image.documentation=https://github.com/reMarkable/githubUserManager
org.opencontainers.image.authors=Marcus Ramberg <marcus.ramberg@remarkable.com>
maintainer=reMarkable
- name: Login to docker registry
if: ${{ github.event_name != 'pull_request' }}
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
with:
registry: docker.pkg.github.com
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push to GitHub Packages
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0
with:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}