Skip to content
This repository has been archived by the owner on Jun 30, 2024. It is now read-only.

Upgrade latest packages #20

Upgrade latest packages

Upgrade latest packages #20

Workflow file for this run

---
name: Build
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
bundler-cache: true
- name: restore cached downloads
id: cache-download-restore
uses: actions/cache/restore@v3
with:
path: downloads
key: ${{ runner.os }}-downloads
- name: fetch all packages
run: bundle exec rake fetch:all
- name: generate package
run: bundle exec rake package
- name: archive actifacts
uses: actions/upload-artifact@v3
with:
name: generated-package
path: pkg/*.tar.xz
retention-days: 5
- name: save downloads in cache
id: cache-download-sav
uses: actions/cache/save@v3
with:
path: downloads
key: ${{ steps.cache-download-restore.outputs.cache-primary-key }}