GitXplorerGitXplorer
d

gh-action-build

public
3 stars
1 forks
8 issues

Commits

List of commits on branch main.
Verified
a9cf836689753907d957aecf93073cb57d56dd98

Merge pull request #8 from di/enable-dependabot

ddi committed a year ago
Verified
e98a3d915032613dae85eafd7e7b40b696b41337

Enable dependabot

ddi committed a year ago
Verified
35596f8e544089edf9760fa053d8227e1bb7085d

Merge pull request #7 from di/fix/3

ddi committed a year ago
Verified
b3e649facd6d9357380319a74a7b3362bee68001

Check for non-pure-Python wheels

ddi committed a year ago
Verified
00ed4e3c32e3c9c2e29b08f14a374577e72b186e

Initial commit

ddi committed a year ago

README

The README file for this repository.

gh-action-build

Use it like this:

name: Release

on:
  push:
    branches:
      - main

jobs:
  build-and-publish:
    runs-on: ubuntu-latest
    permissions:
      # IMPORTANT: this permission is mandatory for trusted publishing
      id-token: write
    steps:
    - name: Checkout
      uses: actions/checkout@v3
    - name: Set up Python
      uses: actions/setup-python@v4
      with:
        python-version: '3.x'
    - name: Build
      uses: di/gh-action-build@main
    - name: Publish
      uses: pypa/gh-action-pypi-publish@master
      with:
        skip_existing: true