-
Notifications
You must be signed in to change notification settings - Fork 1
54 lines (43 loc) · 1.03 KB
/
Copy pathbuild.yml
File metadata and controls
54 lines (43 loc) · 1.03 KB
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
name: Build assets
on:
push:
branches: [main]
paths:
- .github/**
- sass/**
- js/**
- Gemfile
- package.json
- package-lock.json
- webpack.config.ts
workflow_dispatch: {}
schedule:
- cron: '0 0 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: install packages
run: |
sudo apt-get update -y -qq
sudo apt-get install -y libgsl0-dev libmagick++-dev
which gsl-config
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- uses: actions/setup-node@v5
with:
node-version: 20
cache: 'npm'
- name: script/bootstrap
run: script/bootstrap
- name: script/update
run: script/update
- name: script/build
run: script/build
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
commit-message: Update dependencies
title: Update dependencies