fix: Update runner targets
Some checks failed
Deploy to Staging / Build Images (push) Failing after 6s
Deploy to Staging / Deploy to Staging (push) Has been skipped
Deploy to Staging / Verify Staging (push) Has been skipped
Deploy to Staging / Notify Staging Ready (push) Has been skipped
Deploy to Staging / Notify Staging Failure (push) Successful in 5s
Some checks failed
Deploy to Staging / Build Images (push) Failing after 6s
Deploy to Staging / Deploy to Staging (push) Has been skipped
Deploy to Staging / Verify Staging (push) Has been skipped
Deploy to Staging / Notify Staging Ready (push) Has been skipped
Deploy to Staging / Notify Staging Failure (push) Successful in 5s
This commit is contained in:
@@ -22,7 +22,7 @@ env:
|
|||||||
jobs:
|
jobs:
|
||||||
maintenance-migration:
|
maintenance-migration:
|
||||||
name: Run Maintenance Migration
|
name: Run Maintenance Migration
|
||||||
runs-on: mvp-prod
|
runs-on: prod
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ env:
|
|||||||
jobs:
|
jobs:
|
||||||
mirror:
|
mirror:
|
||||||
name: Mirror Base Images
|
name: Mirror Base Images
|
||||||
runs-on: mvp-build
|
runs-on: stage
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|||||||
@@ -99,6 +99,36 @@
|
|||||||
state: started
|
state: started
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
||||||
|
# ============================================
|
||||||
|
# Node.js Installation (required for actions)
|
||||||
|
# ============================================
|
||||||
|
- name: Add NodeSource GPG key
|
||||||
|
shell: |
|
||||||
|
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
|
||||||
|
args:
|
||||||
|
creates: /etc/apt/keyrings/nodesource.gpg
|
||||||
|
|
||||||
|
- name: Add NodeSource repository
|
||||||
|
apt_repository:
|
||||||
|
repo: "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main"
|
||||||
|
state: present
|
||||||
|
filename: nodesource
|
||||||
|
|
||||||
|
- name: Install Node.js
|
||||||
|
apt:
|
||||||
|
name: nodejs
|
||||||
|
state: present
|
||||||
|
update_cache: true
|
||||||
|
|
||||||
|
- name: Verify Node.js installation
|
||||||
|
command: node --version
|
||||||
|
register: node_check
|
||||||
|
changed_when: false
|
||||||
|
|
||||||
|
- name: Display Node.js version
|
||||||
|
debug:
|
||||||
|
msg: "Node.js version: {{ node_check.stdout }}"
|
||||||
|
|
||||||
# ============================================
|
# ============================================
|
||||||
# act_runner Installation
|
# act_runner Installation
|
||||||
# ============================================
|
# ============================================
|
||||||
|
|||||||
Reference in New Issue
Block a user