Retro Bulletin Board Systems on atproto. Web app and TUI. atbbs.xyz
python tui atproto bbs
at master 29 lines 603 B view raw
1name: Build OCI 2 3on: 4 push: 5 branches: [master] 6 7jobs: 8 build: 9 runs-on: ubuntu-latest 10 permissions: 11 contents: read 12 packages: write 13 14 steps: 15 - uses: actions/checkout@v4 16 17 - name: Log in to GitHub Container Registry 18 uses: docker/login-action@v3 19 with: 20 registry: ghcr.io 21 username: ${{ github.actor }} 22 password: ${{ secrets.GITHUB_TOKEN }} 23 24 - name: Build and push 25 uses: docker/build-push-action@v6 26 with: 27 context: . 28 push: true 29 tags: ghcr.io/${{ github.repository }}:latest