Skip to content

Commit

Permalink
Merge pull request #9 from eclipxe13/build-20220318
Browse files Browse the repository at this point in the history
Fix origin CCE - Fracciones arancelarias 2021
  • Loading branch information
eclipxe13 authored Mar 18, 2022
2 parents 8113ff5 + eef81d0 commit 8939f7b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ jobs:
env:
fail-fast: true
- name: Install xlsx2csv & libreoffice-calc
run: sudo apt-get install -y --no-install-recommends xlsx2csv default-jre-headless libreoffice-calc
run: |
sudo apt-get update -y -qq
sudo apt-get install -y -qq --no-install-recommends xlsx2csv default-jre-headless libreoffice-calc
env:
DEBIAN_FRONTEND: noninteractive
- name: Get composer cache directory
Expand Down
5 changes: 5 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# phpcfdi/sat-catalogos-populate Changelog

## Version 2.4.1 2022-03-18

- Fix origin `CCE - Fracciones arancelarias 2021`, the link contains extra characters now.
- CI: run `apt-get update` before install other packages.

## Version 2.4.0 2022-03-07

Add CCP (*Complemento de Carta Porte*) 2.0 catalogs.
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/DumpOrigins.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function run(): int
'CCE - Fracciones arancelarias 2021',
'http://omawww.sat.gob.mx/tramitesyservicios/Paginas/catalogos_emision_cfdi_complemento_ce.htm',
'c_FraccionArancelaria_2021.xls',
'Catálogo vigente a partir del 28 de diciembre de 2020',
'*Catálogo vigente a partir del 28 de diciembre de 2020*',
),
new ConstantOrigin('CCE - Incoterms', "{$common}/c_INCOTERM.xls"),
new ConstantOrigin('CCE - Localidades', "{$common}/c_Localidad.xls"),
Expand Down

0 comments on commit 8939f7b

Please sign in to comment.