Skip to content

Commit 1d6cd42

Browse files
authored
Merge pull request #23 from i13302/feature/upd-runs-on-cthugha
Feature/upd runs on cthugha
2 parents db3fb02 + b75c26b commit 1d6cd42

File tree

4 files changed

+17
-20
lines changed

4 files changed

+17
-20
lines changed

.github/workflows/compile.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,16 @@ name: "Compile"
66
on:
77
push:
88
branches:
9-
- Feature/**
10-
- Chap/**
11-
- develop
12-
- dev/**
9+
- "master"
10+
- "develop"
11+
- "*/*"
1312

1413
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1514
jobs:
1615
# This workflow contains a single job called "build"
1716
Compile:
1817
# The type of runner that the job will run on
19-
runs-on: ubuntu-latest
18+
runs-on: i13302-actions
2019

2120
env:
2221
image-name: latexactionstemplate
@@ -25,7 +24,7 @@ jobs:
2524
steps:
2625
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2726
- name: Set up Git Repository
28-
uses: actions/checkout@v2
27+
uses: actions/checkout@v4
2928

3029
- name: Pull Image
3130
run: docker pull ghcr.io/${{ github.repository_owner }}/${{ env.image-name }}

.github/workflows/push_image.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ name: Push Image
33
on:
44
push:
55
branches:
6-
#- "master"
7-
- "dev/action/push-image"
6+
- "master"
7+
# - "dev/action/push-image"
88

99
jobs:
1010
push_image:
11-
runs-on: ubuntu-20.04
11+
runs-on: i13302-actions
1212
env:
1313
image-name: latexactionstemplate
1414
steps:
1515
- name: checkout
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v4
1717

1818
- name: Create TAGS
1919
run: |
@@ -23,7 +23,7 @@ jobs:
2323
echo TAG $TAG
2424
2525
- name: Cache Docker layers
26-
uses: actions/cache@v2
26+
uses: actions/cache@v4
2727
with:
2828
path: /tmp/.buildx-cache
2929
key: ${{ github.ref }}-${{ github.sha }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
# This workflow contains a single job called "build"
1616
release:
1717
# The type of runner that the job will run on
18-
runs-on: ubuntu-latest
18+
runs-on: i13302-actions
1919

2020
env:
2121
image-name: latexactionstemplate
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2626
- name: Set up Git Repository
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v4
2828

2929
- name: Pull Image
3030
run: docker pull ghcr.io/${{ github.repository_owner }}/${{ env.image-name }}

.github/workflows/test_build.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,15 @@ name: "Test Build"
66
on:
77
push:
88
branches:
9-
- Feature/**
10-
- Chap/**
11-
- develop
12-
- dev/**
9+
- "*/*"
10+
- "develop"
1311

1412
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1513
jobs:
1614
# This workflow contains a single job called "build"
1715
Test_Build:
1816
# The type of runner that the job will run on
19-
runs-on: ubuntu-latest
17+
runs-on: i13302-actions
2018

2119
env:
2220
image-name: japlateximage
@@ -25,10 +23,10 @@ jobs:
2523
steps:
2624
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2725
- name: Set up Git Repository
28-
uses: actions/checkout@v2
26+
uses: actions/checkout@v4
2927

3028
- name: Cache Docker layers
31-
uses: actions/cache@v2
29+
uses: actions/cache@v4
3230
with:
3331
path: /tmp/.buildx-cache
3432
key: ${{ github.ref }}-${{ github.sha }}

0 commit comments

Comments
 (0)