textbringer 9 → 10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/.github/workflows/push_gem.yml +4 -7
 - data/lib/textbringer/version.rb +1 -1
 - metadata +1 -1
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: '0408085f9d1f9af2c377ef3cdbd9b3d58e2fba034cb74b913712dc7fd8d3a318'
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 6979a43e4faef3d8c7f8d8c9fd40f3545043a06796ee17d7bd0a8816ddcc7ef3
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: a1dcf9cd675cfb2e5948811dcead8489cf702fa862def55968d5cb6ce0f3b9160f14d6fd61cd68fe25043b81e5207945a20f66880a62510100133e238a69755f
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 429ed24d28150483f4446749cb294eed127d0c88baa07651ddb1a55485bb9e3c57c9abbcec7b5c2d685fac15bdb13e103c57c756afa87d627acb1bd20b1812db
         
     | 
| 
         @@ -48,10 +48,7 @@ jobs: 
     | 
|
| 
       48 
48 
     | 
    
         
             
                      GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
         
     | 
| 
       49 
49 
     | 
    
         | 
| 
       50 
50 
     | 
    
         
             
                  - name: Purge GitHub cache
         
     | 
| 
       51 
     | 
    
         
            -
                     
     | 
| 
       52 
     | 
    
         
            -
                     
     | 
| 
       53 
     | 
    
         
            -
                      repository 
     | 
| 
       54 
     | 
    
         
            -
                       
     | 
| 
       55 
     | 
    
         
            -
                      path: |
         
     | 
| 
       56 
     | 
    
         
            -
                        README.md
         
     | 
| 
       57 
     | 
    
         
            -
                        README.ja.md
         
     | 
| 
      
 51 
     | 
    
         
            +
                    shell: bash
         
     | 
| 
      
 52 
     | 
    
         
            +
                    run: |
         
     | 
| 
      
 53 
     | 
    
         
            +
                      urls=$(curl -sLk "https://github.com/${{ github.repository_owner }}/${{ github.event.repository.name }}/tree/main" | grep -Eo "(http|https)://camo.githubusercontent.com[a-zA-Z0-9./?=_%:-]*")
         
     | 
| 
      
 54 
     | 
    
         
            +
                      while IFS= read -r url; do echo -e "\nPurge $url"; curl -X PURGE "$url"; done <<< "$urls"
         
     | 
    
        data/lib/textbringer/version.rb
    CHANGED