Merge pull request #7013 from MahtraDR/noop_02 #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Updates | |
on: | |
push: | |
branches: | |
- 'main' | |
paths: | |
- 'dependency.lic' | |
- 'noop.lic' | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby: ['3.3'] | |
name: Publish Updates | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: '20' | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Install ruby gem dependencies with bundler | |
run: | | |
gem install bundler | |
bundle config path vendor/bundle | |
bundle install --jobs 4 --retry 3 | |
- name: Release updates to Tillmen's Lich repository | |
env: | |
AUTHOR: ${{ secrets.repo_author }} | |
PASSWORD: ${{ secrets.repo_password }} | |
TRAVIS_COMMIT: ${{ github.sha }} | |
TRAVIS_COMMIT_RANGE: ${{ github.event.before }}..${{ github.sha }} | |
run: bin/repo |