-
Notifications
You must be signed in to change notification settings - Fork 1
88 lines (77 loc) · 2.41 KB
/
publish.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: Build & Push Docker
on:
workflow_dispatch:
push:
# Publish `main` as Docker `latest` image.
branches:
- main
paths:
- "Dockerfile"
- "**.R"
# Run tests for any PRs.
pull_request:
branches:
- main
# This will cancel running jobs once a new run is triggered
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
update-readme:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: "${{ github.token }}"
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-r@v2
- uses: r-lib/actions/setup-r-dependencies@v2
with:
packages: |
any::sessioninfo
github::ropensci-review-tools/pkgcheck@main
github::assignUser/octolog
any::here
- name: Update README.md
run: source("R/insert-inputs.R")
shell: Rscript {0}
- name: Commit changes
if: ${{ github.event_name != 'pull_request' }}
run: |
git config user.name "Github Actions"
git config user.email "[email protected]"
git commit README.md -m 'Update README.md' || echo "No changes to commit"
git push origin || echo "No changes to commit"
push:
needs: update-readme
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/ropensci-review-tools/pkgcheck-action
tags: |
type=ref,event=branch
type=ref,event=pr
type=raw,value=latest,enable=${{ endsWith(github.ref, 'main') }}
- name: Login to GitHub Container Registry
if: ${{ github.event_name != 'pull_request' }}
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
env:
GITHUB_PAT: ${{ github.token }}
with:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max