mirror of
https://github.com/Unleash/unleash.git
synced 2025-06-14 01:16:17 +02:00
fix: gh actions that run on main (#3550)
## About the changes These also need to be migrated to node 18
This commit is contained in:
parent
867a514d1f
commit
e7d3182af5
2
.github/workflows/build_coverage.yaml
vendored
2
.github/workflows/build_coverage.yaml
vendored
@ -15,7 +15,7 @@ jobs:
|
|||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
node-version: [16.x]
|
node-version: [18.x]
|
||||||
services:
|
services:
|
||||||
# Label used to access the service container
|
# Label used to access the service container
|
||||||
postgres:
|
postgres:
|
||||||
|
38
.github/workflows/update_contributors.yaml
vendored
38
.github/workflows/update_contributors.yaml
vendored
@ -9,25 +9,25 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Use Node.js 16.x
|
- name: Use Node.js 18.x
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 16.x
|
node-version: 18.x
|
||||||
- uses: actions/checkout@master
|
- uses: actions/checkout@master
|
||||||
with:
|
with:
|
||||||
repository: sighphyre/svg-contributors
|
repository: sighphyre/svg-contributors
|
||||||
path: './svg-contributors'
|
path: './svg-contributors'
|
||||||
- name: Create Contributors Image
|
- name: Create Contributors Image
|
||||||
run: |
|
run: |
|
||||||
npm install --prefix ./svg-contributors
|
npm install --prefix ./svg-contributors
|
||||||
./svg-contributors/bin/contributors -o unleash -n unleash -l 500
|
./svg-contributors/bin/contributors -o unleash -n unleash -l 500
|
||||||
- uses: aws-actions/configure-aws-credentials@v1
|
- uses: aws-actions/configure-aws-credentials@v1
|
||||||
with:
|
with:
|
||||||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
aws-region: ${{ secrets.AWS_DEFAULT_REGION }}
|
aws-region: ${{ secrets.AWS_DEFAULT_REGION }}
|
||||||
- name: Publish static assets to S3
|
- name: Publish static assets to S3
|
||||||
run: |
|
run: |
|
||||||
ls -l
|
ls -l
|
||||||
aws s3 cp contributors.svg s3://getunleash-static/docs-assets/contributors.svg
|
aws s3 cp contributors.svg s3://getunleash-static/docs-assets/contributors.svg
|
||||||
|
Loading…
Reference in New Issue
Block a user