Skip to content

Update Gemfile.lock #40

Update Gemfile.lock

Update Gemfile.lock #40

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true
- name: Install i18n dependencies
run: |
sudo apt-get update
sudo apt-get install translate-toolkit
- name: Build website
run: |
scripts/build.sh
- name: Deploy to server
if: ${{ github.event_name == 'push' && github.repository == 'ubuntu-mate/start.ubuntu-mate.org' && github.ref == 'refs/heads/master' }}
run: |
mkdir -p $HOME/.ssh/
chmod 700 $HOME/.ssh/
echo -n "${{ secrets.SSH_MATEY }}" > $HOME/.ssh/id_rsa
chmod 600 $HOME/.ssh/id_rsa
scripts/deploy.sh