/
githubmirror
/
libreport
Обзор
Документация
Войти
/
githubmirror
/
libreport
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/release.yml
21 строка
576 B
Michal Fabik
tito: Clean up tito setup
18 мар 2021, 19:13
18 мар 2021, 19:13
bce6486
Код
Авторство
О чём код?
name: Create new release on: push: tags: - '[0-9]+.[0-9]+.[0-9]+' # Semantic versioning, hence the inflexible pattern. jobs: release: runs-on: ubuntu-latest steps: - name: Check out sources uses: actions/checkout@v2 - name: Create release uses: actions/create-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions with: tag_name: ${{ github.ref }} release_name: Release ${{ github.ref }} draft: false prerelease: false