Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python Wrangler deploy from GitHub Action broken #39

Open
jbampton opened this issue Jan 2, 2021 · 2 comments
Open

Python Wrangler deploy from GitHub Action broken #39

jbampton opened this issue Jan 2, 2021 · 2 comments
Labels
bug Something isn't working hacktoberfest help wanted Extra attention is needed
Projects

Comments

@jbampton
Copy link
Member

jbampton commented Jan 2, 2021

The last failed run is seen here:

https://github.com/RoquesBeach/archipelago/runs/1636866964

@jbampton jbampton added bug Something isn't working help wanted Extra attention is needed complexity-medium labels Jan 2, 2021
@Andrew-Colman
Copy link
Contributor

@Piopio
Copy link

Piopio commented Feb 22, 2021

@jbampton you could test without the Wrangler GitHub Action which seems KO for python :

name: Deploy

on:
  push:
    branches:
      - main

jobs:
  deploy:
    runs-on: ubuntu-latest
    name: Deploy
    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-node@v2
        with:
          node-version: '12'
      - run: npm i @cloudflare/wrangler -g
      - name: Set up Python 3.7
        uses: actions/setup-python@v1
        with:
          python-version: 3.7
      - name: Install dependencies
        shell: bash
        run: |
          python -m pip install transcrypt
      - name: Wrangler publish
        shell: bash
        env:
          CF_ACCOUNT_ID: YOUR_CF_ACCOUNT_ID
          CF_API_KEY: ${{ secrets.CF_API_TOKEN }}
        run: wrangler publish

@jbampton jbampton added this to To do in Beach via automation Oct 23, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working hacktoberfest help wanted Extra attention is needed
Projects
Beach
To do
Development

No branches or pull requests

3 participants