2
0

releaser.yml 529 B

1234567891011121314151617181920212223
  1. name: Releaser configuration
  2. on:
  3. - push
  4. jobs:
  5. build:
  6. runs-on: ubuntu-latest
  7. steps:
  8. - uses: actions/checkout@v2
  9. - name: Set up Python
  10. uses: actions/setup-python@v2
  11. - name: Install dependencies
  12. run: |
  13. sudo apt install protobuf-compiler
  14. - name: Install releaser
  15. run: |
  16. pip install git+https://github.com/jelmer/releaser
  17. - name: Validate releaser.conf
  18. run: |
  19. PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python releaser validate .