fix(repository.lic): v2.70 check for proper version format (#2193) #198
This file contains hidden or 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: [ 'master' ] | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| name: Publish Updates | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| fetch-depth: '20' | |
| - uses: ruby/setup-ruby@d5126b9b3579e429dd52e51e68624dda2e05be25 # v1.267.0 | |
| with: | |
| ruby-version: '2.7' | |
| bundler-cache: true | |
| - name: Install xmllint | |
| uses: awalsh128/cache-apt-pkgs-action@acb598e5ddbc6f68a970c5da0688d2f3a9f04d05 # v1.6.0 | |
| with: | |
| packages: libxml2-utils | |
| version: 1.0 | |
| - name: Run type data migrations to create gameobj-data.xml | |
| run: bin/migrate | |
| - 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 |