Updated ruby-setup to Morlana standards
Some checks failed
Deploy Jekyll site to Pages / build (push) Has been cancelled
Some checks failed
Deploy Jekyll site to Pages / build (push) Has been cancelled
This commit is contained in:
parent
0a871de2d5
commit
2b8240fb47
@ -1,36 +1,20 @@
|
|||||||
# This workflow uses actions that are not certified by GitHub.
|
|
||||||
# They are provided by a third-party and are governed by
|
|
||||||
# separate terms of service, privacy policy, and support
|
|
||||||
# documentation.
|
|
||||||
|
|
||||||
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
|
|
||||||
name: Deploy Jekyll site to Pages
|
name: Deploy Jekyll site to Pages
|
||||||
|
|
||||||
on:
|
on:
|
||||||
# Runs on pushes targeting the default branch
|
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
|
||||||
# Allows you to run this workflow manually from the Actions tab
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
pages: write
|
|
||||||
id-token: write
|
|
||||||
|
|
||||||
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
|
||||||
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: "pages"
|
group: "pages"
|
||||||
cancel-in-progress: false
|
cancel-in-progress: false
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
# Build job
|
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
|
env:
|
||||||
|
RUBY_VERSION: "3.3.8"
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@ -41,21 +25,27 @@ jobs:
|
|||||||
path: 'pages'
|
path: 'pages'
|
||||||
- name: Setup Ruby
|
- name: Setup Ruby
|
||||||
run: |
|
run: |
|
||||||
apt-get update && \
|
apt-get update
|
||||||
apt-get install ruby-full build-essential zlib1g-dev -y && \
|
apt-get install curl wget tar build-essential zlib1g-dev gpg -y
|
||||||
|
curl -sSL https://rvm.io/mpapis.asc | gpg --import -
|
||||||
|
curl -sSL https://rvm.io/pkuczynski.asc | gpg --import -
|
||||||
|
curl -sSL https://get.rvm.io | bash -s stable
|
||||||
|
source /etc/profile.d/rvm.sh
|
||||||
|
rvm mount -r https://git.morlana.online/api/packages/Morlana/generic/ruby-ubuntu-22.04-aarch64/$RUBY_VERSION/ruby-$RUBY_VERSION.tar.bz2
|
||||||
|
rvm use $RUBY_VERSION && ruby -v && gem -v
|
||||||
gem install bundler jekyll webrick
|
gem install bundler jekyll webrick
|
||||||
- name: Build with Jekyll
|
- name: Build with Jekyll
|
||||||
run: |
|
run: |
|
||||||
bundle install && \
|
bundle install
|
||||||
bundle exec jekyll build --destination pages
|
bundle exec jekyll build --destination pages
|
||||||
env:
|
env:
|
||||||
JEKYLL_ENV: production
|
JEKYLL_ENV: production
|
||||||
- name: push pages
|
- name: push pages
|
||||||
run: |
|
run: |
|
||||||
cd pages && \
|
cd pages
|
||||||
cp ../.domains ./.domains && \
|
cp ../.domains ./.domains
|
||||||
git config user.name "${{ gitea.actor }}" && \
|
git config user.name "${{ gitea.actor }}"
|
||||||
git config user.email ""${{ gitea.actor }}"@noreply.git.morlana.online" && \
|
git config user.email ""${{ gitea.actor }}"@noreply.git.morlana.online"
|
||||||
git add . && \
|
git add .
|
||||||
git commit -m "jekyll build from Action ${GITHUB_SHA}" && \
|
git commit -m "jekyll build from Action ${GITHUB_SHA}"
|
||||||
git push
|
git push
|
||||||
|
Loading…
x
Reference in New Issue
Block a user